Updates user
cURL
curl --request PUT \ --url https://app.sendoso.com/api/scim/v2/Users/{user_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": { "givenName": "<string>", "familyName": "<string>" }, "active": true, "userType": "<string>", "division": "<string>" }'
{ schemas: ["urn:ietf:params:scim:schemas:core:2.0:User"], id: "1000", userName: "john.doe@sendoso.com", active: true, name: { givenName: "John", familyName: "Doe", }, emails: [ { value: "john.doe@sendoso.com" }, ], userType: "sender", division: "Marketing Ops", }
Hide name
sender
manager
admin
urn:ietf:params:scim:schemas:core:2.0:User
Hide emails