Path parameters
-
Identifier of the user to modify
Body Required
-
Value is
urn:ietf:params:scim:api:messages:2.0:PatchOp
.
PATCH
/Users/{userId}
curl \
-X PATCH https://setup.adra.com/api/organizations/{organizationSid}/scim/Users/{userId} \
-H "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"
}
]
}