latestOpenAPI 3.1.02026-08-1014497184.0 KB

8b99dca11019

Get workflow run status

Retrieves the status and details of a workflow run

get/workflows/runs/{run_id}

Path parameters

run_idstring required

Response

OK

created_atstring date-time
idstring uuid
inputobject
workflow_keystring

Example response

{
  "created_at": "2024-01-01T00:00:00Z",
  "id": "01234567-89ab-cdef-0123-456789abcdef",
  "input": {
    "description": "",
    "payload": {
      "action": "in_progress"
    },
    "type": "workflow_job"
  },
  "status": {
    "next_step": 1,
    "started_at": "2024-01-01T00:00:00Z",
    "state": 2
  },
  "workflow_key": "integration.stripe.charge.succeeded"
}