Skip to main content
PUT
/
api
/
user
/
{id}
Update a user by ID (admin)
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>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
fullName
string
email
string<email>
phoneNumber
string
sinchPhoneNumber
string
designation
string
accessRole
string
departmentId
string

Response

User updated

Generic response envelope. Endpoint-specific fields are intentionally open.