Retrieve staff members for a specific location
GET
/api/organizations/{organization_id}/locations/{id}/staffmembers
locations
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/organizations//locations//staffmembers'
Response Response Example
200 - Success
{
"id": "emp_001",
"name": "John Doe",
"email": "john.doe@example.com",
"phoneNumber": "+15551234567",
"organizationId": "org_12345",
"externalId": "ext_emp_001",
"externalPayrollId": "payroll_ext_001",
"accessRoleId": "role_001",
"active": true,
"hourlyWage": 20,
"wageType": "hourly",
"employmentType": "full_time",
"currencyCode": "USD",
"birthDate": "1990-01-01T00:00:00Z",
"createdAt": "2023-10-27T09:00:00Z",
"updatedAt": "2023-10-27T09:00:00Z",
"deletedAt": null
}
Request
Path Params
organization_id
string
required
Example:
org_12345
id
string
required
Example:
loc_001