Update User (Operational) Tenant
Developing
PATCH
/v1/users/tenant-operational/{id}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH '/v1/users/tenant-operational/{{$string.uuid}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"full_name": "Smith Johnson",
"email": "smith@example.com",
"phone_number": "081381273116",
"company_id": "f1ee1129-3589-45ec-ac22-72a7c2a5d0cb",
"role_id": "093b974b-076a-496a-a0a8-d5891a6a0997",
"is_active": true,
"attachment_url": "http://url.com"
}'
Response Response Example
{
"message": "User updated successfully",
"data": {
"id": "4f584534-1621-4165-871e-46a84ced9949",
"fullname": "Smith Johnson",
"email": "smith@example.com",
"phone_number": "081381273116",
"role_id": "093b974b-076a-496a-a0a8-d5891a6a0997",
"is_active": true
}
}
Request
Path Params
id
stringÂ
required
Example:
{{$string.uuid}}
Body Params application/json
Responses
Modified at 2025-04-25 09:45:49