Sync permissioned workers data with Workday through Apideck's unified API. One integration, instant access to the governed data your team needs.
In Apideck, this resource is called Employees (API: employees)
List, Get operations available through our unified API
Fields available for Workday Workers
idfirst_namelast_namedisplay_nameemailsemployee_numberjob_titlestatusdepartmentmanagerhire_datetermination_dategenderbirth_dateaddresses+2 moreSample response structure for workers
{
"id": "12345",
"first_name": "Example First Name",
"last_name": "Example Last Name",
"display_name": "Example Display Name",
"emails": [
{
"id": "12345",
"email": "contact@example.com",
"type": "primary"
}
],
"employee_number": 10,
"job_title": "Example Job Title",
"status": "active",
"department": "string",
"manager": "string",
"hire_date": "2024-01-15",
"termination_date": "2024-01-15",
"gender": "string",
"birth_date": "2024-01-15",
...Start syncing Workday workers in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List workers from Workday
const result = await apideck.hris.employees.list({
serviceId: 'workday'
})
for await (const page of result) {
console.log(page)
}
// Returns unified workers dataExplore more Workday resources available through Apideck's unified API
Discover the most popular ways businesses integrate Workday workers data
We build and maintain connectors, so you don't have to. View our full list of HRIS connectors.
Missing a connector? We're able to add new connectors.
Build Workday integrations in your favorite language with our official SDKs.
Build Workday integrations with the official Node.js SDK.
Build Workday integrations with the official TypeScript SDK.
Build Workday integrations with the official PHP SDK.
Build Workday integrations with the official .NET.
Build Workday integrations with the official Python SDK.
Build Workday integrations with the official Java SDK.
Build Workday integrations with the official Go SDK.