Skip to content
For LLMsView as Markdown·

Workday

Access HR, payroll, and talent management data from Workday.

DetailValue
CategoryHR
Base URLhttps://wd2-impl-services1.workday.com/ccx/api/v1/{tenant}
AuthenticationOAuth2
Endpoints5
Connector keyworkday

Using Workday in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Workday from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /workersList workers
GET /workers/{workerId}Get a worker
GET /organizationsList organizations
GET /locationsList locations
GET /timeOffList time off entries

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /workers

List workers

DetailValue
Operation IDhr.listWorkers
MethodGET
Path/workers

Parameters

NameLocationTypeRequired
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Workday connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listWorkers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Workday API reference.

GET /workers/{workerId}

Get a worker

DetailValue
Operation IDhr.getWorker
MethodGET
Path/workers/{workerId}

Parameters

NameLocationTypeRequired
workerIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Workday connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.getWorker.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Workday API reference.

GET /organizations

List organizations

DetailValue
Operation IDhr.listOrganizations
MethodGET
Path/organizations

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Workday connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listOrganizations.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Workday API reference.

GET /locations

List locations

DetailValue
Operation IDhr.listLocations
MethodGET
Path/locations

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Workday connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listLocations.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Workday API reference.

GET /timeOff

List time off entries

DetailValue
Operation IDhr.listTimeOff
MethodGET
Path/timeOff

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Workday connection from the Connection dropdown.
  3. In the Operation dropdown, select hr.listTimeOff.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Workday API reference.