Justworks
API actions for the Justworks integration.
Justworks
Manage employees and time off in Justworks.
Get employee profile
Fetches a detailed profile for a specific Justworks employee.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
employee_id | string | Yes | The ID of the Justworks employee to look up. |
Response
{
"employee": {},
"status": "abc123xyz"
}List employees
Retrieves employees from Justworks with an optional status filter.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Optional status filter such as active or terminated. |
Response
{
"employees": [
{}
],
"status": "abc123xyz"
}List time off requests
Lists existing time off requests from Justworks.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Optional status filter such as approved or pending. |
Response
{
"requests": [
{}
]
}