Lodol Docs

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

ParameterTypeRequiredDescription
employee_idstringYesJustworks employee identifier to fetch.

Response

{
  "employee": {},
  "status": "abc123xyz"
}

List employees

Retrieves employees from Justworks with an optional status filter.

Parameters

ParameterTypeRequiredDescription
statusstringNoOptional 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

ParameterTypeRequiredDescription
statusstringNoOptional status filter (e.g. approved, pending).

Response

{
  "requests": [
    {}
  ]
}

On this page