v1
latestOpenAPI 3.1.02026-07-2466150275.0 KBUsers
Update User Details
Update a user profile
The company specific user information, the user's role, and the password are not updated via this endpoint.
put/v1/user/{user_id}/
Path parameters
user_idinteger required
Request body
Example request
{
"firstName": "John",
"lastName": "Doe",
"email": "j.doe@example.com",
"phone": "6045551234",
"phoneCell": "6045551234",
"phoneWork": "6045554321",
"address": "#22 - 321 Someplace St",
"city": "Burnaby",
"postalCode": "V3V2X2",
"country": "Canada",
"timezone": "America/Vancouver",
"birthDate": "1980-01-23",
"industryId": 1,
"tradeId": 12,
"emergencyContact": "John Smith",
"emergencyContactPhone": "6045551234"
}Response
Successful Response
Example response
{
"data": {
"id": 1,
"firstName": "John",
"lastName": "Doe",
"email": "j.doe@example.com",
"phone": "6045551234",
"phoneCell": "6045551234",
"phoneWork": "6045554321",
"address": "#22 - 321 Someplace St",
"city": "Burnaby",
"postalCode": "V3V2X2",
"country": "Canada",
"timezone": "America/Vancouver",
"birthDate": "1980-01-23",
"industryId": 1,
"tradeId": 12,
"emergencyContact": "John Smith",
"emergencyContactPhone": "6045551234"
}
}