Patch operations with SCIM 2.0 connector

I’m trying to update attributes with the SCIM 2.0 connector. It seems to be sending PATCH requests for updated attributes, as expected. However, the structure of the body doesn’t look right and is not accepted by the target.

I do have noncompliant server checked for some other attributes in a custom schema and those actually are updating as expected.

The attributes I can’t get to update are in the base User schema.

This is the structure currently being sent. It is consisted with the PATCH examples, I see at SCIM 2.0 Protocol Reference | Okta Developer

{
  "Operations": [
    {
      "op": "replace",
      "value": {
        "title": "Testing title change"
      }
    }
  ]
}

This is how the target expects the structure to be.
This is consistent with the PATCH examples I see an another website https://is.docs.wso2.com/en/latest/apis/scim2-patch-operations/

    "Operations": [
        {
            "op": "replace",
            "path": "title",
            "value": "Testing Ttle Update"
        }
    ]
}

Is there a way to specify the format of the patch requests for SCIM?

Hey @blanghals ,

Is this query related to Okta or sailpoint?

I’m asking about SailPoint SCIM 2.0 connector. The okta link is just to reference an example scim patch request I found.