This is a catch-all provider — any valid URL under
https://workday.com is supported. Workday REST API. Workday is a per-tenant app: each customer’s REST base (host + /ccx/api/<service>/<version>/<tenant>) lives inside the connected account, and Pipedream resolves it. Send RELATIVE paths only; the literal host workday.com is routing-only. Common reads: /workers (list), /workers/{id} (one worker; {id} is a Workday WID, not an email), /workers/me (the authenticated worker, useful as an identity probe). Pagination is limit + offset (limit default 20, max 100; offset zero-based). Caveat: the connection’s stored base usually targets the common/v1 surface, so domain-specific reads (staffing, absenceManagement) may require their own /<service>/<version>/ path segment and the matching OAuth scope; those are not guaranteed to resolve under the default base. Auth is brokered by Pipedream, do not send an Authorization header. This provider is read-only: only GET requests are supported. The endpoints below are curated examples.Endpoints
List workers (employees and contingent workers) in the connected tenant. Paginate with limit (max 100) and offset.
GEThttps://workday.com/workers?limit=20&offset=0 — Free
- SDK
- cURL
Get one worker by Workday ID (WID): personal data, employment, business title, and primary supervisory organization.
GEThttps://workday.com/workers/{id} — Free
- SDK
- cURL
Get the currently authenticated worker. Use as an identity probe to confirm which tenant and user the connection is bound to (requires the Workday-owned scope on the client).
GEThttps://workday.com/workers/me — Free
- SDK
- cURL
Next Steps
All Providers
Browse all supported AI providers
Forward Proxy
Learn how to construct proxy URLs and authenticate requests