Create a new staff member
POST
/api/organizations/{organization_id}/staffmembers
staffmembers
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/organizations//staffmembers' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "John Doe",
"email": "john.doe@example.com",
"phoneNumber": "+15551234567",
"employmentType": "full_time",
"wageType": "hourly",
"hourlyWage": 20,
"birthDate": "1990-01-01",
"externalId": "ext_emp_001",
"accessRoleName": "Employee",
"currencyCode": "USD",
"roleIds": [
"role_001"
],
"currentLocation": "loc_001"
}'
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
Body Params application/json