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": "c14bc015-f744-4a10-b630-aba60e052eee",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "19e47bfc-f29f-40a8-8e4a-02daad179e71",
"status": "completed",
"created_at": "2025-10-08T10:40:16+01:00",
"updated_at": "2025-10-08T10:40:16+01:00",
"executed_at": "2025-10-08T10:40:16+01:00"
}
],
"status": "in_progress",
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "0a8285e8-3fbe-4b89-a0ff-8400f65a3dcd",
"status": "completed",
"created_at": "2025-10-08T10:40:16+01:00",
"updated_at": "2025-10-08T10:40:16+01:00",
"executed_at": "2025-10-08T10:40:16+01:00"
},
"created_at": "2025-10-08T10:40:16+01:00",
"updated_at": "2025-10-08T10:40:16+01:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "020d8b35-2857-45c7-bbe4-b82b38fdc1fe",
"status": "completed",
"created_at": "2025-10-08T10:40:16+01:00",
"updated_at": "2025-10-08T10:40:16+01:00",
"executed_at": "2025-10-08T10:40:16+01:00"
}
}
]
}