Get all executions for a single automation blueprint
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
automationBlueprint_uuid
string Required
Query parameters
-
filter[uuid]
string Filter by a comma separated list of UUIDs.
-
sort
string Field to sort by. Valid fields are [created_at ]. Negative sign to denote DESC. Defaults to 'name'.
GET
/api/v1/automation-blueprints/{automationBlueprint_uuid}/executions
curl \
--request GET 'https://api.plannrcrm.com/api/v1/automation-blueprints/automationBlueprint_uuid/executions' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response examples (200)
{
"data": [
{
"name": "Send client welcome pack to newly created client",
"uuid": "f75f02af-9ffb-4c00-84da-21dce2553a32",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "7a18e0e0-30fb-4ee4-9d7d-c26d6a88e3ad",
"status": "completed",
"created_at": "2025-05-14T18:27:15+01:00",
"updated_at": "2025-05-14T18:27:15+01:00",
"executed_at": "2025-05-14T18:27:15+01:00"
}
],
"status": "in_progress",
"created_at": "2025-05-14T18:27:15+01:00",
"updated_at": "2025-05-14T18:27:15+01:00",
"triggered_by": "client.created"
}
]
}