curl --request PUT \
--url https://your-instance.example.com/api/user/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fullName": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"sinchPhoneNumber": "<string>",
"designation": "<string>",
"accessRole": "<string>",
"departmentId": "<string>"
}
'