Users
Update a user
Partially updates an existing user. Only provided fields are updated.
patch/users/{id}
Path parameters
idinteger required
User ID
Example:1
User ID
Request body
Example request
{
"email": "jane.doe@company.com",
"firstName": "Jane",
"lastName": "Doe",
"phoneNumber": "+33612345678",
"jobTitle": "Account Executive",
"jobDepartment": "Sales",
"role": "user",
"timezone": "Europe/Paris"
}Response
User updated
Example response
{
"id": 1,
"email": "john@example.com",
"phoneNumber": "+33612345678",
"jobTitle": "Account Executive",
"jobDepartment": "Sales",
"role": "user",
"timezone": "Europe/Paris",
"createdOn": "2024-06-15T14:30:00.000Z",
"modifiedOn": "2024-06-15T15:00:00.000Z"
}