List an automation's runs — a deleted automation's runs remain reachable (audit trail)
Path Parameters
id*string
Query Parameters
page?integer
Range
1 <= value <= 9007199254740991Default
1pageSize?integer
Range
1 <= value <= 100Default
20search?string
sort?string
status?string
Value in
- "running"
- "completed"
- "failed"
Response Body
application/json
curl -X GET "https://example.com/api/automations/string/runs"{ "rows": [ { "id": "string", "orgId": "string", "automationId": "string", "trigger": "string", "event": { "property1": null, "property2": null }, "status": "running", "actionResults": [ { "index": -9007199254740991, "type": "string", "status": "completed", "error": "string" } ], "startedAt": "string", "finishedAt": "string" } ], "total": -9007199254740991, "page": -9007199254740991, "pageSize": -9007199254740991}