Get an automation execution
Headers
-
Content-Type string
-
Accept string
Path parameters
-
The ID of the automation execution.
GET /api/v1/automation-executions/{id}
curl \
-X GET https://api.plannrcrm.com/api/v1/automation-executions/id \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"name": "Send client welcome pack to newly created client",
"uuid": "3f3e04de-ae13-44f8-9ced-93479924203b",
"steps": [
{
"info": "\"[{errors : \"the account_uuid field is required\" }]\"",
"name": "Send SMS",
"uuid": "7406390a-4c59-4d3d-b228-58184f6c08c8",
"status": "completed",
"created_at": "2024-12-03T16:50:34+00:00",
"updated_at": "2024-12-03T16:50:34+00:00",
"executed_at": "2024-12-03T16:50:34+00:00"
}
],
"status": "in_progress",
"created_at": "2024-12-03T16:50:34+00:00",
"updated_at": "2024-12-03T16:50:34+00:00",
"triggered_by": "client.created"
}