Workflow Executions
executionsLook up workflow executions: get full detail of a single execution including artifacts, or list paginated summaries filtered by status or project.
Instructions
Look up workflow executions (history of check_app_in_browser, trigger_crawl, and test-suite runs). Pass an "action":
"get" {uuid} → one execution with FULL detail (nodeExecutions, state, errorInfo) + any screenshot/gif artifacts.
"list" {projectUuid?, status?, page?, pageSize?} → paginated execution summaries. status ∈ completed|running|failed|cancelled|pending.
Tip: after a fresh check_app_in_browser run, poll action:"get" with the returned executionId until artifact URLs are available.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | [list] Page (1-indexed). | |
| uuid | No | [get] Execution UUID. | |
| action | Yes | Operation to perform. | |
| status | No | [list] Filter by status. | |
| pageSize | No | [list] Page size (1..200). | |
| projectUuid | No | [list] Filter by project UUID. |