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": "e323a38c-91a4-4b6b-afb6-cece97adeba6",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "ebca6e28-c469-4582-b7e2-a5f425a4e45b",
"status": "completed",
"created_at": "2025-08-07T13:41:45+01:00",
"updated_at": "2025-08-07T13:41:45+01:00",
"executed_at": "2025-08-07T13:41:45+01:00"
}
],
"status": "in_progress",
"created_at": "2025-08-07T13:41:45+01:00",
"updated_at": "2025-08-07T13:41:45+01:00",
"triggered_by": "client.created"
}
]
}