Skip to main content
GET
/
v1
/
atlas
/
example-workflow
/
{runId}
Get workflow run status
const options = {method: 'GET'};

fetch('http://localhost:4010/v1/atlas/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>"
  }
}

Path Parameters

runId
string
required

The workflow run ID

Response

Workflow status retrieved

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object
required