Skip to main content
GET
/
api
/
v1
/
automation
/
{automationId}
/
executions
curl "https://your-collabase.ch/api/v1/automation/auto-abc123/executions" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "exec-xyz789",
    "status": "SUCCESS",
    "startedAt": "2026-04-01T09:00:00.000Z",
    "completedAt": "2026-04-01T09:00:02.500Z",
    "durationMs": 2500,
    "error": null,
    "stepLogs": [
      {
        "stepId": "node-1",
        "stepType": "action",
        "connectorId": "slack",
        "status": "SUCCESS",
        "output": { "ok": true, "ts": "1234567890.123456" },
        "error": null,
        "durationMs": 310
      }
    ]
  }
]
Returns the 50 most recent execution runs for the automation, each with their per-step logs.

Path parameters

automationId
string
required
The automation ID.

Response

[].id
string
Execution ID.
[].status
string
QUEUED | RUNNING | SUCCESS | FAILED | CANCELLED | PARTIAL
[].startedAt
string
ISO 8601 start timestamp.
[].completedAt
string
ISO 8601 completion timestamp.
[].durationMs
number
Total duration in milliseconds.
[].error
string
Top-level error message if the run failed.
[].stepLogs
array
Per-step logs — see below.
stepLogs fields:
FieldTypeDescription
stepIdstringNode ID in the flow graph
stepTypestringNode type (e.g. action, condition)
connectorIdstringConnector ID if applicable
statusstringSame enum as execution status
outputobjectStep output data
errorstringStep-level error
durationMsnumberStep duration
curl "https://your-collabase.ch/api/v1/automation/auto-abc123/executions" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "exec-xyz789",
    "status": "SUCCESS",
    "startedAt": "2026-04-01T09:00:00.000Z",
    "completedAt": "2026-04-01T09:00:02.500Z",
    "durationMs": 2500,
    "error": null,
    "stepLogs": [
      {
        "stepId": "node-1",
        "stepType": "action",
        "connectorId": "slack",
        "status": "SUCCESS",
        "output": { "ok": true, "ts": "1234567890.123456" },
        "error": null,
        "durationMs": 310
      }
    ]
  }
]