Justworks
API actions for the Justworks integration.
Justworks
Manage employees and time off in Justworks using your API token.
Get employee profile
Fetches a detailed profile for a specific Justworks employee.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
employee_id | string | Yes | Justworks employee identifier to fetch. |
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 (read-only).
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Optional status filter (e.g. approved, pending). |
Response
{
"requests": [
{}
]
}