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": "c5ad0780-412d-45d3-b58d-c1b33c219ccd",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "a3f3efa3-f739-4c9e-9080-6ba8e659600f",
"status": "completed",
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"executed_at": "2025-10-24T10:34:19+01:00"
}
],
"status": "in_progress",
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "b12b2f10-72ad-4052-bc8f-d87236a8d433",
"status": "completed",
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"executed_at": "2025-10-24T10:34:19+01:00"
},
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "8276677c-b2c1-456e-aef6-139140ba8935",
"status": "completed",
"created_at": "2025-10-24T10:34:19+01:00",
"updated_at": "2025-10-24T10:34:19+01:00",
"executed_at": "2025-10-24T10:34:19+01:00"
}
}
]
}