GET
/
workflows
/
runs
/
{id}
Get workflow run
curl --request GET \
  --url https://core.ravenna.ai/api/workflows/runs/{id} \
  --header 'x-ravenna-api-token: <api-key>'
{
  "id": "<string>",
  "status": "pending",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "steps": [
    {
      "id": "<string>",
      "stepId": "<string>",
      "runId": "<string>",
      "status": "pending",
      "inputs": "<any>",
      "outputs": "<any>",
      "inferredInputs": "<any>",
      "createdAt": "<string>",
      "auditEvents": [
        {
          "entityType": "ticket",
          "entityId": "<string>",
          "event": "<string>",
          "message": "<string>",
          "level": "info",
          "data": "<any>"
        }
      ]
    }
  ]
}

Authorizations

x-ravenna-api-token
string
header
required

Path Parameters

id
string
required

Response

Successful response

id
string
required
status
enum<string>
required
Available options:
pending,
running,
completed,
failed,
cancelled,
skipped
createdAt
string
required
updatedAt
string
required
steps
object[]