Get all automation executions for an automation blueprint Run in API Explorer
Ask AI
Query parameters
-
Filter by a comma separated list of UUIDs.
-
Filter by a comma separated list of client UUIDs.
-
Filter by a comma separated list of account UUIDs.
-
Include relationships. Valid values are [account].
-
Field to sort by. Valid fields are [created_at ]. Negative sign to denote DESC. Defaults to 'name'.
GET
/api/v1/automation-executions
curl \
--request GET 'https://api.plannrcrm.com/api/v1/automation-executions' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"name": "Send client welcome pack to newly created client",
"uuid": "17e4bb47-b676-4632-a99b-f9501728ff71",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "f742d34c-acb6-4cd8-afef-2e08c9205a56",
"status": "completed",
"created_at": "2026-03-20T13:25:16+00:00",
"updated_at": "2026-03-20T13:25:16+00:00",
"executed_at": "2026-03-20T13:25:16+00:00"
}
],
"status": "in_progress",
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "da92f788-0fa1-4c5f-9473-3c8f8955394a",
"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-03-20T13:25:16+00:00",
"first_name": "Gareth",
"updated_at": "2026-03-20T13:25:16+00:00",
"with_login": true,
"inactive_at": "2026-03-20",
"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-03-20T13:25:16+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-03-20T13:25:16+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-03-20 13:25:16",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-03-20T13:25:16+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-03-20T13:25:16+00:00"
},
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "e2459f83-82e1-4a00-a2d8-647ca1552206",
"status": "completed",
"created_at": "2026-03-20T13:25:16+00:00",
"updated_at": "2026-03-20T13:25:16+00:00",
"executed_at": "2026-03-20T13:25:16+00:00"
},
"created_at": "2026-03-20T13:25:16+00:00",
"updated_at": "2026-03-20T13:25:16+00:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "c7da4f58-ef9f-4152-84ca-1cfbc85b4bef",
"status": "completed",
"created_at": "2026-03-20T13:25:16+00:00",
"updated_at": "2026-03-20T13:25:16+00:00",
"executed_at": "2026-03-20T13:25:16+00:00"
}
}
]
}