Get all automation executions for an 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-executions
curl \
-X GET https://api.plannrcrm.com/api/v1/automation-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": "3105b24a-bb92-4d32-a43b-1b3c6370e5c1",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "d51903c6-616f-4373-8658-21e3998e4c1e",
"status": "completed",
"created_at": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"executed_at": "2025-01-17T11:18:32+00:00"
}
],
"status": "in_progress",
"created_at": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"triggered_by": "client.created"
}
]
}