Skip to Content
ResourcesIntegrationsProductivity & DocsWorkday

Workday

Workday icon
Arcade Optimized

Arcade.dev tools for interacting with Workday

Author:Arcade
Version:0.1.0
Auth:User authorization via the Workday auth provider
7tools
7require secrets

The Workday toolkit connects Arcade to Workday's worker-facing APIs, enabling signed-in workers to query, validate, and request time off through their own Workday tenant.

Capabilities

  • Worker identity — Resolve the authenticated worker's identity and job details before performing any operation; all tools are scoped to the signed-in worker and cannot target others.
  • Time-off balances & history — Retrieve current plan balances (as Workday calculates them) and browse past time-off entries with configurable date windows, pagination, and per-group status details.
  • Time-off type discovery — List all time-off types the worker is eligible to request, including rules for quantities, units, reasons, positions, clock times, and draft support.
  • Date validation — Pre-check candidate dates against a specific time-off type before submitting a request, surfacing acceptance status and existing booking context.
  • Request creation — Submit or save time-off requests as drafts, with Workday-side rule resolution for reasons, positions, and default quantities; read-back confirms state or signals when to re-check via list tools.
  • Status tracking — List in-flight and historical request statuses with group-level detail, action guidance for drafts or sent-back requests, and pagination by request ID.

OAuth

This toolkit uses OAuth 2.0 via the Workday provider. See the Workday auth provider docs for setup details.

Secrets

Two secrets are required to route API calls to the correct Workday environment.

  • WORKDAY_BASE_URL — The base URL of your organization's Workday REST API endpoint (e.g., https://wd2-impl-services1.workday.com). Obtain this from your Workday administrator or from the API Clients section of your Workday tenant configuration. It is also documented in Workday's REST API documentation under your tenant's service endpoint details.

  • WORKDAY_TENANT_NAME — The unique identifier for your Workday tenant (e.g., mycompany_preview). This appears in your Workday login URL (https://<hostname>/wday/<tenant_name>) and is visible in Workday's Edit Tenant Setup administrative task. Your Workday system administrator can confirm the exact value.

Store secrets using the Arcade secrets guide or directly in the Arcade dashboard.

Available tools(7)

7 of 7 tools
Operations
Behavior
Tool nameDescriptionSecrets
List the time-off types the signed-in worker can request, with their rules. Each entry includes its display name and time_off_type_id. Retrieve the options here and pass the chosen ID to the date check and request tools. Each entry also carries what Workday reports for that type: a default quantity, whether a reason is mandatory and which reasons are allowed, whether a position must be named, and whether clock times are required, determine the quantity, or may cross midnight. `draft_support` reports evidence of existing drafts. Requests use draft mode by default; set mode to submit only when the worker asks for submission. Each type's unit is the unit to use for request quantities; do not pass fractions of a full day for an hourly type. start_and_end_time_required requires both clock times. calculate_quantity_based_on_start_and_end_time means Workday determines the recorded quantity from those times. crossing_over_midnight_enabled permits an earlier end time on the following date, keeping the span under 24 hours.
2
Show how much time off the signed-in worker has left, by plan. Balances come back exactly as Workday calculates them for the as-of date; this tool never projects or totals an accrual Workday did not return. It reads the signed-in worker record to address the balances to that worker. Read `coverage` before relaying an empty list: it says whether no plan is tracked for this worker or the read simply did not finish, and a worker whose time off is not balance-tracked can still request time off.
2
Browse the time off the signed-in worker has already logged. Matching entries come back in ascending date order, earliest first. Defaults to a three-month window either side of today. These date bounds are sent to Workday before paging, so a narrow window does not scan the worker's whole history. A request with mixed attributes appears as separate groups sharing one request_id. All matching groups stay on one page and count as one request. Dates and quantities cover only matching day entries, including only the in-window portion of an overlapping request. A capped read marks groups incomplete and omits totals; narrow the window to reduce the upstream read. Existing requests must be changed or cancelled in Workday; this toolkit cannot modify them. requests[].dates are YYYY-MM-DD dates inside the selected window; out-of-window days of the same request are excluded. Each group's unit applies only to that group. result_count, total_count, limit, and offset count distinct request IDs, not groups. Page with has_next_page and next_offset. results_truncated means the upstream read was capped; no offset completes that read, so narrow the date bounds or check Workday. requires_workday_ui_action identifies drafts or sent-back groups needing action; use their workday_ui_action, falling back to the response's shared guidance. status=unknown means Workday's status was missing or unrecognized. Check Workday to confirm its state and any required action; requires_workday_ui_action=false does not establish that no action is needed for an unknown status.
2
Show where the signed-in worker's time-off requests stand right now. Defaults to no date bound, subject to the read cap. Provide dates to narrow the upstream search when results are incomplete. Requests come back in ascending order of their earliest matching date. The first page contains the earliest matching requests, which may be years in the past when no lower date bound is supplied. For upcoming or next time off, set from_date to today's date in YYYY-MM-DD; the unbounded first page does not identify the next time off. A request with different types, units, statuses, positions, reasons, or notes appears as separate groups sharing one request_id. All matching groups stay on one page and count as one request. Dates and quantities describe only matching entries within the requested window. Capped reads mark groups incomplete and omit quantity totals. Each group reports its own status and action guidance. Existing requests must be changed or cancelled in Workday; this toolkit cannot modify them. requests[].dates are YYYY-MM-DD dates inside the selected window; out-of-window days of the same request are excluded. Each group's unit applies only to that group. result_count, total_count, limit, and offset count distinct request IDs, not groups. Page with has_next_page and next_offset. results_truncated means the upstream read was capped; no offset completes that read, so narrow the date bounds or check Workday. requires_workday_ui_action identifies drafts or sent-back groups needing action; use their workday_ui_action, falling back to the response's shared guidance. status=unknown means Workday's status was missing or unrecognized. Check Workday to confirm its state and any required action; requires_workday_ui_action=false does not establish that no action is needed for an unknown status.
2
Check whether Workday accepts each date for the selected time-off type. Send the candidate dates together before creating a request. Each result separates date acceptance from the configured default and existing bookings. A default does not establish a maximum, and a missing default says nothing about the worker's schedule. Accepted dates therefore have unknown capacity; Workday validates the requested quantity on submission. Booking totals include only matching known units and position scope. Incompatible units or ambiguous positions leave the total unknown. Worker-based checks include bookings regardless of their position reference; position-scoped checks exclude bookings against another position. Incomplete booking lookups omit all booked totals and disclose that the booking names shown are partial results. dates[].valid reports date acceptance, not available quantity. valid_count counts accepted dates. bookable_spans stays empty because maximum capacity is unknown; this does not mean none of the dates are valid. Read coverage_note for lookup limits.
2
Request time off for the signed-in worker, asking for a draft by default. Set mode to submit only when the worker asks for submission. Existing drafts must be submitted in the Workday UI; existing requests must also be changed or cancelled there. The receipt reports the confirmed state, or created_status_unknown when read-back cannot confirm it. In that case, check list_time_off_status using the returned identifiers; do not repeat the create. Recorded amounts appear in days; requested_days preserves the values sent, and missing amounts are unconfirmed. The type's rules are resolved from Workday first, so a reason, a position, and an omitted quantity are checked against that type before anything is written. Workday owns the rest of the validation; its rejections come back as errors describing what to change. In the receipt, days[].date matches the requested date and days[].unit labels only that entry's recorded amount. Missing quantity means unconfirmed, never zero. requested_days contains the quantities (including defaults) and clock times sent. status is draft_saved, submitted, approved, or sent_back when confirmed; created_status_unknown means the request exists but its state is unknown, and blocked_by_warning means nothing was written. requires_workday_ui_action=false on an unconfirmed receipt means no action was established; read status before advising.
2
Identify the Workday worker the connection is signed in as, and their jobs. Call this before acting on the worker's record so the answer is anchored to the right person and tenant. Every other tool in this toolkit acts on this same worker and cannot be pointed at anyone else.
2
Last updated on