Update a specific role
PATCH
/api/organizations/{organization_id}/roles/{id}
roles
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/organizations//roles/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Senior Manager",
"hourlyWage": 30
}'
Response Response Example
200 - Success
{
"id": "role_001",
"name": "Senior Manager",
"organizationId": "org_12345",
"hourlyWage": 30,
"active": true,
"createdAt": "2023-10-27T09:00:00Z",
"updatedAt": "2023-10-27T11:00:00Z",
"deletedAt": null
}
Request
Path Params
organization_id
string
required
Example:
org_12345
id
string
required
Example:
role_001
Body Params application/json