Get all executions for a single automation blueprint Run in API Explorer
GET
/api/v1/automation-blueprints/{automationBlueprint_uuid}/executions
curl \
--request GET 'https://api.plannrcrm.com/api/v1/automation-blueprints/dcf0-484e-a0c5-08590fe89a84-f6aa1670/executions' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"name": "Send client welcome pack to newly created client",
"uuid": "109a3dd2-c8c3-4aa7-818a-6266c40f350a",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "67cf801d-fe8c-48a5-829e-23a9c85466e0",
"status": "completed",
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"executed_at": "2025-11-17T21:14:40+00:00"
}
],
"status": "in_progress",
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "366f3bb8-efdd-4b46-a8c8-168d1fe4beac",
"status": "completed",
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"executed_at": "2025-11-17T21:14:40+00:00"
},
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "dfdee01e-fe19-4916-b376-0057ff8af4b3",
"status": "completed",
"created_at": "2025-11-17T21:14:40+00:00",
"updated_at": "2025-11-17T21:14:40+00:00",
"executed_at": "2025-11-17T21:14:40+00:00"
}
}
]
}