Update a specific staff member
PATCH
/api/organizations/{organization_id}/staffmembers/{id}
staffmembers
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/organizations//staffmembers/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "John Updated Doe",
"email": "john.updated@example.com",
"phoneNumber": "+15559876543",
"employmentType": "part_time",
"hourlyWage": 22,
"accessRoleName": "Manager",
"currentLocation": "loc_002"
}'
Response Response Example
200 - Success
{
"id": "emp_001",
"name": "John Updated Doe",
"email": "john.updated@example.com",
"phoneNumber": "+15559876543",
"organizationId": "org_12345",
"externalId": "ext_emp_001_updated",
"externalPayrollId": "payroll_ext_001",
"accessRoleId": "role_002",
"active": true,
"hourlyWage": 22,
"wageType": "hourly",
"employmentType": "part_time",
"currencyCode": "USD",
"birthDate": "1990-01-01T00:00:00Z",
"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:
emp_001
Body Params application/json