Read a Workday task / data card
workday_get_taskFetch any Workday task or data card by its path and retrieve a structured, read-only view with fields, references, related tasks, and export links.
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`. | |
| 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. |