RelayAPI

List the step log for a run (oldest first)

GET
/v1/automation-runs/{id}/steps
AuthorizationBearer <token>

API key (rlay_live_* or rlay_test_). Invite redemption also accepts a server-derived rlay_session_ bearer for a current user session.

In: header

Path Parameters

id*string

Query Parameters

cursor?string
limit?integer
Range1 <= value <= 200
Default50

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/automation-runs/string/steps"
{  "data": [    {      "automation_id": "string",      "duration_ms": 0,      "entered_via_port_key": "string",      "error": null,      "executed_at": "string",      "exited_via_port_key": "string",      "id": "string",      "node_key": "string",      "node_kind": "message",      "outcome": "string",      "payload": null,      "run_id": "string"    }  ],  "has_more": true,  "next_cursor": "string"}

Found something wrong? Help us improve this page.