Runs
Get a Run
Retreive details about a specific run
GET
The /clusters/{clusterId}/runs/{runId}
endpoint will return details for a single run, including its status and result (if available).
A run may take some time to complete. You can inspect the status
to determine if it is finished:
Status | Description |
---|---|
pending | The Run has been created but not yet started processing. |
running | The Run is currently processing the agent loop. |
paused | The Run is paused (e.g., waiting for an approval). |
done | The Run has completed. A result and summary should have been produced. |
failed | The Run failed. Please see failureReason for more information. |
Please see OnStatusChange for details on an asynchronous alternative for receiving Run results.
Headers
Response
200 - application/json
Available options:
pending
, running
, paused
, done
, failed
Was this page helpful?