Get all Automation Blueprints Run in API Explorer
Ask AI
Query parameters
-
Comma separated list of relationships to include in the response. Valid relationships are [account,steps,webhook_targets].
-
Filter by a comma separated list of UUIDs.
-
Filter automation blueprints by which are active or not.
-
Filter automation blueprints by a certain trigger type.
-
Filter automation blueprints by a partial match to the blueprint name.
-
Field to sort by. Valid fields are [created_at, updated_at, name]. Negative sign to denote DESC. Defaults to 'name'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/automation-blueprints
curl \
--request GET 'https://api.plannrcrm.com/api/v1/automation-blueprints' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"uuid": "5657861a-d297-4307-aafe-8acc404f483f",
"created_at": "2026-04-30T14:48:32+01:00",
"updated_at": "2026-04-30T14:48:32+01:00",
"name": "Add new client on webhook",
"trigger": "client.create",
"is_active": false,
"account": {
"uuid": "3a584e07-0e24-40de-bf71-90f6795bec25",
"created_at": "2026-04-30T14:48:32+01:00",
"updated_at": "2026-04-30T14:48:32+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-30T14:48:32+01:00",
"next_review_date": "2026-04-30T14:48:32+01:00",
"previous_review_date": "2026-04-30T14:48:32+01:00",
"anniversary_review_date": "2026-04-30T14:48:32+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-30",
"last_interaction_at": "2026-04-30 14:48:32",
"referral_code": "ABC12345",
"permissions": {
"firm:read": [
"firm"
],
"network:read": [
"network:uuid"
]
},
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"conditions": [],
"configuration": [],
"steps": [
{
"uuid": "008cd20d-b3dd-45b1-a5ff-4c6314bca9a6",
"created_at": "2026-04-30T14:48:32+01:00",
"updated": "2026-04-30T14:48:32+01:00",
"name": "create a new client",
"type": "client.create",
"configuration": {
"params": {
"account_uuid": {
"type": "ref",
"value": "trigger.account.uuid"
}
}
},
"condition_state": false,
"parent_step_uuid": "e179723f-5458-4982-84dc-066c1a8a0d91"
}
],
"steps_count": "1",
"webhook_targets": [
{
"uuid": "612f3862-c53c-4712-a1d7-9967d0596d73",
"created_at": "2026-04-30T14:48:32+01:00",
"updated_at": "2026-04-30T14:48:32+01:00",
"url": "https://api.plannrcrm.com/api/v1/webhooks/01605357-9fba-4cab-b4f0-141476dfa4ea"
}
]
}
]
}