Get all executions for a single automation blueprint
Headers
-
Content-Type string
-
Accept string
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 \
-X GET https://api.plannrcrm.com/api/v1/automation-blueprints/automationBlueprint_uuid/executions \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"name": "Send client welcome pack to newly created client",
"uuid": "97f828ff-f2fc-4655-8cab-8dd36a96694b",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "fcb4ba65-d393-460d-af31-cbb73c10c396",
"status": "completed",
"created_at": "2024-11-20T13:24:03+00:00",
"updated_at": "2024-11-20T13:24:03+00:00",
"executed_at": "2024-11-20T13:24:03+00:00"
}
],
"status": "in_progress",
"created_at": "2024-11-20T13:24:03+00:00",
"updated_at": "2024-11-20T13:24:03+00:00",
"triggered_by": "client.created"
}
]
}