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": "8a71227c-66aa-4668-95d6-b37a6da15472",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "471e76a7-45c8-42c7-ab2b-3cd75e3644d0",
"status": "completed",
"created_at": "2026-04-09T17:35:06+01:00",
"updated_at": "2026-04-09T17:35:06+01:00",
"executed_at": "2026-04-09T17:35:06+01:00"
}
],
"status": "in_progress",
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "6275cc24-6672-4daf-a560-c3c107930a6c",
"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-04-09T17:35:06+01:00",
"first_name": "Gareth",
"updated_at": "2026-04-09T17:35:06+01:00",
"with_login": true,
"inactive_at": "2026-04-09",
"permissions": {
"firm:read": [
"firm"
],
"network:read": [
"network:uuid"
]
},
"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-04-09T17:35:06+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-04-09T17:35:06+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-04-09 17:35:06",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-04-09T17:35:06+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-04-09T17:35:06+01:00"
},
"next_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "d5162e0a-81ce-45c1-b644-3ef9a97544cf",
"status": "completed",
"created_at": "2026-04-09T17:35:06+01:00",
"updated_at": "2026-04-09T17:35:06+01:00",
"executed_at": "2026-04-09T17:35:06+01:00"
},
"created_at": "2026-04-09T17:35:06+01:00",
"updated_at": "2026-04-09T17:35:06+01:00",
"triggered_by": "client.created",
"previous_step": {
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "3fb90e60-c916-4373-b29b-84a77c187f80",
"status": "completed",
"created_at": "2026-04-09T17:35:06+01:00",
"updated_at": "2026-04-09T17:35:06+01:00",
"executed_at": "2026-04-09T17:35:06+01:00"
}
}
]
}