cURL
curl --request PATCH \ --url http://api/v1/scim/v2/Users/{userUuid} \ --header 'Content-Type: application/json' \ --data ' { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ], "Operations": [ { "op": "remove", "path": "<string>", "value": "<any>" } ] } '
{ "schemas": [ "<string>" ], "id": "<string>", "meta": { "version": "<string>", "location": "<string>", "lastModified": "2023-11-07T05:31:56Z", "created": "2023-11-07T05:31:56Z", "resourceType": "<string>" }, "userName": "<string>", "name": { "familyName": "<string>", "givenName": "<string>" }, "active": true, "emails": [ { "primary": true, "value": "<string>" } ], "roles": [ { "value": "<string>", "display": "<string>", "type": "<string>", "primary": true } ], "urn:lightdash:params:scim:schemas:extension:2.0:User": { "role": "<string>" } }
Patch a user by ID (SCIM PATCH)
UUID of the user to patch
Patch operations to apply
Show child attributes
Ok
Was this page helpful?