Path parameters
-
userId
string Required Identifier of the user to modify
Body
Required
-
schemas
array[string] Required Value is
urn:ietf:params:scim:api:messages:2.0:PatchOp
. -
Operations
array[object] Required
PATCH
/Users/{userId}
curl \
--request PATCH 'https://setup.adra.com/api/organizations/{organizationSid}/scim/Users/{userId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/scim+json"
Request example
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"path": "name.familyName",
"value": "Hernand"
},
{
"op": "replace",
"path": "timezone",
"value": "Europe/Oslo"
}
]
}