Get all executions for a single automation blueprint
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": "acc40aa7-7458-48b1-82e3-94550679f85b",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "d741cef1-6700-4049-bb7a-6ffa94662b98",
"status": "completed",
"created_at": "2025-09-17T15:46:53+01:00",
"updated_at": "2025-09-17T15:46:53+01:00",
"executed_at": "2025-09-17T15:46:53+01:00"
}
],
"status": "in_progress",
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "4c7d57d6-23c2-4c6e-8e1b-40e51eb96bbe",
"status": "completed",
"created_at": "2025-09-17T15:46:53+01:00",
"updated_at": "2025-09-17T15:46:53+01:00",
"executed_at": "2025-09-17T15:46:53+01:00"
},
"created_at": "2025-09-17T15:46:53+01:00",
"updated_at": "2025-09-17T15:46:53+01:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "fd2ae1bb-f53c-4e37-98f7-b5d8a0981dcb",
"status": "completed",
"created_at": "2025-09-17T15:46:53+01:00",
"updated_at": "2025-09-17T15:46:53+01:00",
"executed_at": "2025-09-17T15:46:53+01:00"
}
}
]
}