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": "52680ca3-b0f7-4501-a078-87c563ff7b83",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "61705479-7da9-4fcd-9eec-ebc4bbeed143",
"status": "completed",
"created_at": "2025-08-27T17:31:27+01:00",
"updated_at": "2025-08-27T17:31:27+01:00",
"executed_at": "2025-08-27T17:31:27+01:00"
}
],
"status": "in_progress",
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "b1759203-2f03-4d1d-af06-1d8e59efbf72",
"status": "completed",
"created_at": "2025-08-27T17:31:27+01:00",
"updated_at": "2025-08-27T17:31:27+01:00",
"executed_at": "2025-08-27T17:31:27+01:00"
},
"created_at": "2025-08-27T17:31:27+01:00",
"updated_at": "2025-08-27T17:31:27+01:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "e6126abc-2e98-474f-8149-d790a099b3b5",
"status": "completed",
"created_at": "2025-08-27T17:31:27+01:00",
"updated_at": "2025-08-27T17:31:27+01:00",
"executed_at": "2025-08-27T17:31:27+01:00"
}
}
]
}