Get an automation execution

GET /api/v1/automation-executions/{uuid}

Path parameters

  • uuid string Required

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      UUID of automation execution

    • created_at string

      Timestamp of when this execution was created

    • updated_at string

      Timestamp of when this execution was updated

    • status string

      Current status of this automation execution

    • triggered_by string

      Name of what triggered this automation execution

    • steps array[object]

      Collection of the steps in this execution

      Hide steps attributes Show steps attributes object
      • uuid string
      • created_at string
      • updated_at string
      • executed_at string
      • status string
      • info string
      • name string
    • name string

      Name of the automation blueprint

GET /api/v1/automation-executions/{uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/automation-executions/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "name": "Send client welcome pack to newly created client",
  "uuid": "4bc44ea0-cd68-4eca-ae51-f22ff526fe07",
  "steps": [
    {
      "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
      "name": "Send SMS",
      "uuid": "b355d837-d6bf-41f9-a3da-77720e3a418e",
      "status": "completed",
      "created_at": "2025-06-25T15:10:46+01:00",
      "updated_at": "2025-06-25T15:10:46+01:00",
      "executed_at": "2025-06-25T15:10:46+01:00"
    }
  ],
  "status": "in_progress",
  "created_at": "2025-06-25T15:10:46+01:00",
  "updated_at": "2025-06-25T15:10:46+01:00",
  "triggered_by": "client.created"
}