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": [
{
"name": "Send client welcome pack to newly created client",
"uuid": "87f4e858-cf61-4e81-a8d9-67a424f2a46e",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "f6f3cabf-66ba-47d2-8e44-78c23d9fd07a",
"status": "completed",
"created_at": "2026-02-06T09:09:44+00:00",
"updated_at": "2026-02-06T09:09:44+00:00",
"executed_at": "2026-02-06T09:09:44+00:00"
}
],
"status": "in_progress",
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "c4f68f2c-a0a1-4cc2-8cba-761eb2e9e6ba",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"circles": "App\\Http\\Resources\\CircleResource",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"created_at": "2026-02-06T09:09:44+00:00",
"first_name": "Gareth",
"updated_at": "2026-02-06T09:09:44+00:00",
"with_login": true,
"inactive_at": "2026-02-06",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"referral_code": "ABC12345",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2026-02-06T09:09:44+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-02-06T09:09:44+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-02-06 09:09:44",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-02-06T09:09:44+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-02-06T09:09:44+00:00"
},
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "fa804ffa-27f9-4fe0-b727-721735aed132",
"status": "completed",
"created_at": "2026-02-06T09:09:44+00:00",
"updated_at": "2026-02-06T09:09:44+00:00",
"executed_at": "2026-02-06T09:09:44+00:00"
},
"created_at": "2026-02-06T09:09:44+00:00",
"updated_at": "2026-02-06T09:09:44+00:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "4fea41c3-c8be-4175-af86-0d0cd41c8609",
"status": "completed",
"created_at": "2026-02-06T09:09:44+00:00",
"updated_at": "2026-02-06T09:09:44+00:00",
"executed_at": "2026-02-06T09:09:44+00:00"
}
}
]
}