TypeScript
const options = {method: 'GET'}; fetch('http://localhost:4005/v1/arc/example-workflow/{runId}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "success": true, "data": { "id": "<string>", "type": "<string>", "status": "<string>", "startedAt": "<string>", "completedAt": "<string>", "durationMs": 123 }, "meta": { "requestId": "<string>", "timestamp": "<string>" } }
Retrieves the status of a workflow run by its ID
The workflow run ID
Workflow status retrieved
true
Show child attributes
Was this page helpful?