Get all automation executions for an automation blueprint Run in API Explorer
Ask AI
GET
/api/v1/automation-executions
curl \
--request GET 'https://api.plannrcrm.com/api/v1/automation-executions' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"name": "Send client welcome pack to newly created client",
"uuid": "a55a2361-6c77-4537-a0ab-6fe7329a7c49",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "6fef9fbd-a9c9-4505-848e-d7c288e34c8e",
"status": "completed",
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"executed_at": "2025-12-04T22:09:16+00:00"
}
],
"status": "in_progress",
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "7d735d74-28f6-439f-add8-7992cd376141",
"status": "completed",
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"executed_at": "2025-12-04T22:09:16+00:00"
},
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "2f51a6d5-fda3-416e-b0f9-e5196d1bbd20",
"status": "completed",
"created_at": "2025-12-04T22:09:16+00:00",
"updated_at": "2025-12-04T22:09:16+00:00",
"executed_at": "2025-12-04T22:09:16+00:00"
}
}
]
}