List workflow runs
Fetch details about workflow runs
You can fetch details about workflow runs, including their state, completed and in-progress steps, and step details.
The retention duration for completed workflow runs depends on your quota. Please check the pricing page for details.
If you have executed multiple workflow runs with the same workflowRunId, the workflowRunId
filter will return all of them.
To uniquely identify a single workflow run, include the workflowCreatedAt
timestamp in your filter.
Request
By providing a cursor you can paginate through all of the workflow runs.
Filter workflow runs by run id.
Filter workflow runs by workflow url.
Filter workflow runs by the unix milliseconds value of creation timestamp
Filter workflow runs by state
Value | Description |
---|---|
RUN_STARTED | The workflow has started to run and currently in progress. |
RUN_SUCCESS | The workflow run has completed succesfully. |
RUN_FAILED | Some errors has occured and workflow failed after all retries. |
RUN_CANCELED | The workflow run has canceled upon user request. |
Filter workflow runs by starting date, in milliseconds (Unix timestamp). This is inclusive.
Filter workflow runs by ending date, in milliseconds (Unix timestamp). This is inclusive.
The number of workflow runs to return. Default and max is 10.
Response
A cursor which you can use in subsequent requests to paginate through all workflow runs. If no cursor is returned, you have reached the end of the workflow runs.
Was this page helpful?