The Only API docs
Automations

List automation runs

Execution history for one automation.

GET
/automations/{automation_id}/runs

Execution history for one automation.

Guide: Automations

X-API-Key<token>

Your CRM panel API key

In: header

Path Parameters

automation_id*integer

Query Parameters

limit?integer

Maximum number of rows to return.

Default100

Response Body

application/json

curl -X GET "https://example.com/automations/0/runs"
{  "runs": [    {      "automation_id": 0,      "created_at": "string",      "error_snippet": "string",      "event_id": 0,      "id": 0,      "status": "string"    }  ],  "success": true}