AACFlow

Workday

Mitarbeiter, Einstellungen, Onboarding und HR-Vorgänge in Workday verwalten

Nutzungsanleitung

Integrate Workday HRIS into your workflow. Create pre-hires, hire employees, manage worker profiles, assign onboarding plans, handle job changes, retrieve compensation data, and process terminations.

Tools

workday_get_worker

Retrieve a specific worker profile including personal, employment, and organization data.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
workerIdstringJaWorker ID to retrieve (e.g., 3aa5550b7fe348b98d7b5741afc65534)

Ausgabe

ParameterTypBeschreibung
workerjsonWorker profile with personal, employment, and organization data

workday_list_workers

List or search workers with optional filtering and pagination.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
limitnumberNeinMaximum number of workers to return (default: 20)
offsetnumberNeinNumber of records to skip for pagination

Ausgabe

ParameterTypBeschreibung
workersarrayArray of worker profiles
totalnumberTotal number of matching workers

workday_create_prehire

Create a new pre-hire (applicant) record in Workday. This is typically the first step before hiring an employee.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
legalNamestringJaFull legal name of the pre-hire (e.g., "Jane Doe")
emailstringNeinEmail address of the pre-hire
phoneNumberstringNeinPhone number of the pre-hire
addressstringNeinAddress of the pre-hire
countryCodestringNeinISO 3166-1 Alpha-2 country code (defaults to US)

Ausgabe

ParameterTypBeschreibung
preHireIdstringID of the created pre-hire record
descriptorstringDisplay name of the pre-hire

workday_hire_employee

Hire a pre-hire into an employee position. Converts an applicant into an active employee record with position, start date, and manager assignment.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
preHireIdstringJaPre-hire (applicant) ID to convert into an employee
positionIdstringJaPosition ID to assign the new hire to
hireDatestringJaHire date in ISO 8601 format (e.g., 2025-06-01)
employeeTypestringNeinEmployee type (e.g., Regular, Temporary, Contractor)

Ausgabe

ParameterTypBeschreibung
workerIdstringWorker ID of the newly hired employee
employeeIdstringEmployee ID assigned to the new hire
eventIdstringEvent ID of the hire business process
hireDatestringEffective hire date

workday_update_worker

Update fields on an existing worker record in Workday.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
workerIdstringJaWorker ID to update
fieldsjsonJaFields to update as JSON (e.g., {"businessTitle": "Senior Engineer", "primaryWorkEmail": "new@company.com"})

Ausgabe

ParameterTypBeschreibung
eventIdstringEvent ID of the change personal information business process
workerIdstringWorker ID that was updated

workday_assign_onboarding

Create or update an onboarding plan assignment for a worker. Sets up onboarding stages and manages the assignment lifecycle.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
workerIdstringJaWorker ID to assign the onboarding plan to
onboardingPlanIdstringJaOnboarding plan ID to assign
actionEventIdstringJaAction event ID that enables the onboarding plan (e.g., the hiring event ID)

Ausgabe

ParameterTypBeschreibung
assignmentIdstringOnboarding plan assignment ID
workerIdstringWorker ID the plan was assigned to
planIdstringOnboarding plan ID that was assigned

workday_get_organizations

Retrieve organizations, departments, and cost centers from Workday.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
typestringNeinOrganization type filter (e.g., Supervisory, Cost_Center, Company, Region)
limitnumberNeinMaximum number of organizations to return (default: 20)
offsetnumberNeinNumber of records to skip for pagination

Ausgabe

ParameterTypBeschreibung
organizationsarrayArray of organization records
totalnumberTotal number of matching organizations

workday_change_job

Perform a job change for a worker including transfers, promotions, demotions, and lateral moves.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
workerIdstringJaWorker ID for the job change
effectiveDatestringJaEffective date for the job change in ISO 8601 format (e.g., 2025-06-01)
newPositionIdstringNeinNew position ID (for transfers)
newJobProfileIdstringNeinNew job profile ID (for role changes)
newLocationIdstringNeinNew work location ID (for relocations)
newSupervisoryOrgIdstringNeinTarget supervisory organization ID (for org transfers)
reasonstringJaReason for the job change (e.g., Promotion, Transfer, Reorganization)

Ausgabe

ParameterTypBeschreibung
eventIdstringJob change event ID
workerIdstringWorker ID the job change was applied to
effectiveDatestringEffective date of the job change

workday_get_compensation

Retrieve compensation plan details for a specific worker.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
workerIdstringJaWorker ID to retrieve compensation data for

Ausgabe

ParameterTypBeschreibung
compensationPlansarrayArray of compensation plan details
idstringCompensation plan ID
planNamestringName of the compensation plan
amountnumberCompensation amount
currencystringCurrency code
frequencystringPay frequency

workday_terminate_worker

Initiate a worker termination in Workday. Triggers the Terminate Employee business process.

Eingabe

ParameterTypErforderlichBeschreibung
tenantUrlstringJaWorkday instance URL (e.g., https://wd5-impl-services1.workday.com\)
tenantstringJaWorkday tenant name
usernamestringJaIntegration System User username
passwordstringJaIntegration System User password
workerIdstringJaWorker ID to terminate
terminationDatestringJaTermination date in ISO 8601 format (e.g., 2025-06-01)
reasonstringJaTermination reason (e.g., Resignation, End_of_Contract, Retirement)
notificationDatestringNeinDate the termination was communicated in ISO 8601 format
lastDayOfWorkstringNeinLast day of work in ISO 8601 format (defaults to termination date)

Ausgabe

ParameterTypBeschreibung
eventIdstringTermination event ID
workerIdstringWorker ID that was terminated
terminationDatestringEffective termination date

On this page

Heute mit dem Aufbau beginnen
Über 100 000 Entwickler vertrauen uns.
Die SaaS-Plattform zum Aufbau von KI-Agenten und für Ihre agentische Belegschaft.
Loslegen