Skip to main content
GET
/
v1
/
automations
/
executions
/
{exec_id}
/
traces
Get detailed traces for an execution
curl --request GET \
  --url http://0.0.0.0:3000/v1/automations/executions/{exec_id}/traces \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "execution_id": 123,
    "step": "<string>",
    "result": "success",
    "message": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

exec_id
integer
required

ID numérico da execução

Response

Execution traces

id
integer
execution_id
integer
step
string
result
enum<string>
Available options:
success,
error,
skipped
message
string | null
timestamp
string<date-time>