Read a Workday task / data card
workday_get_taskFetch any Workday task or data card as structured read-only JSON: title, user, fields, drill-in references, related tasks, and export links from your signed-in browser session.
Instructions
Fetch a Workday page (task or data card) by its path and return a structured, read-only view: title, current user, each section as label/value fields, navigable references (instance id + drill-in uri), and the page's related tasks + export links. The path is a Workday *.htmld endpoint — take it from a prior result's references[].uri or relatedTasks[].uri, or paste the URL of a Workday page you have open (SPA /d/... URLs are normalized automatically). Every request rides your signed-in Workday tab. Read-only; no data is mutated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Workday data endpoint path, e.g. `/acme/inst/13102!ABC/cacheable-task/2998$43525.htmld`, or a copied `/acme/d/...` SPA URL, or a bare suffix like `quickaccess/fetch.htmld`. | |
| view | No | Response shape: "compact" (default) drops fields the response already carries elsewhere; "full" returns every field this server understands. compact strips image/avatar URLs from the response; "full" returns Workday's payload untouched. No field projection: this server has no verified record of which Workday fields matter, and inventing one would risk dropping a field a caller needs. | |
| depth | No | Levels to follow (default 1). Supplying this implies `expand` unless `expand: false` is passed explicitly. | |
| expand | No | Follow the page down to the child cards holding its real content. Turn this on when a page comes back with no sections — container/hub pages delegate everything to children whose uris exist only inside the parent response. | |
| maxCards | No | Cap on child cards fetched (default 12). Supplying this implies `expand` unless `expand: false` is passed explicitly. |