Get all executions for a single automation blueprint Run in API Explorer
Ask AI
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": "ca85559f-d364-4142-a518-6ea16456b513",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "f1fb06b0-4a0d-4d9d-a2fc-5daf13e8930d",
"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": "38a8c743-7b0a-4fc6-ba23-8ed5d5719c67",
"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": "8971bdcc-4066-4942-a4e6-741436e7652d",
"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"
}
}
]
}