Get all executions for a single automation blueprint Run in API Explorer
Ask AI
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": [
{
"uuid": "7d93fc5f-3e45-4e92-beca-019a31bebec3",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"status": "in_progress",
"triggered_by": "client.created",
"steps": [
{
"uuid": "fe126eaf-7fc0-4374-b914-1039c968df2d",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"executed_at": "2026-04-29T16:54:31+01:00",
"status": "completed",
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS"
}
],
"name": "Send client welcome pack to newly created client",
"next_step": {
"uuid": "3a7b79ab-cceb-4e68-a99a-6e84dc019724",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"executed_at": "2026-04-29T16:54:31+01:00",
"status": "completed",
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS"
},
"previous_step": {
"uuid": "a2966658-01c0-432d-9115-946418bb524a",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"executed_at": "2026-04-29T16:54:31+01:00",
"status": "completed",
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS"
},
"account": {
"uuid": "0a1da6dc-86cd-4720-807d-620dfafdbe75",
"created_at": "2026-04-29T16:54:31+01:00",
"updated_at": "2026-04-29T16:54:31+01:00",
"type": "client",
"role": "client",
"first_name": "Gareth",
"last_name": "Thompson",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"firm": "App\\Http\\Resources\\FirmResource",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"business_unit": "App\\Http\\Resources\\BusinessUnitResource",
"groups": "App\\Http\\Resources\\GroupResource",
"tags": "App\\Http\\Resources\\TagResource",
"owners": "App\\Http\\Resources\\AccountResource",
"first_contact_date": "2026-04-29T16:54:31+01:00",
"next_review_date": "2026-04-29T16:54:31+01:00",
"previous_review_date": "2026-04-29T16:54:31+01:00",
"anniversary_review_date": "2026-04-29T16:54:31+01:00",
"with_login": true,
"has_joint_account": true,
"can_be_deleted": "false",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"circles": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"inactive_at": "2026-04-29",
"last_interaction_at": "2026-04-29 16:54:31",
"referral_code": "ABC12345",
"permissions": {
"firm:read": [
"firm"
],
"network:read": [
"network:uuid"
]
},
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
}
}
]
}