Get all automation executions for an automation blueprint Run in API Explorer

GET /api/v1/automation-executions

Query parameters

  • filter[uuid] string

    Filter by a comma separated list of UUIDs.

  • filter[client_uuids] string

    Filter by a comma separated list of client UUIDs.

  • sort string

    Field to sort by. Valid fields are [created_at ]. Negative sign to denote DESC. Defaults to 'name'.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • status string
      • triggered_by string
      • steps array[object]
        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
      • next_step object
        Hide next_step attributes Show next_step attributes object
        • uuid string
        • created_at string
        • updated_at string
        • executed_at string
        • status string
        • info string
        • name string
      • previous_step object
        Hide previous_step attributes Show previous_step attributes object
        • uuid string
        • created_at string
        • updated_at string
        • executed_at string
        • status string
        • info string
        • name string
GET /api/v1/automation-executions
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/automation-executions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Send client welcome pack to newly created client",
      "uuid": "d24b4d73-7206-46a0-815a-508ef61110c6",
      "steps": [
        {
          "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
          "name": "Send SMS",
          "uuid": "7fee25f3-1027-45b6-b063-05bcdc2d44b5",
          "status": "completed",
          "created_at": "2025-11-17T21:14:40+00:00",
          "updated_at": "2025-11-17T21:14:40+00:00",
          "executed_at": "2025-11-17T21:14:40+00:00"
        }
      ],
      "status": "in_progress",
      "next_step": {
        "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
        "name": "Send SMS",
        "uuid": "422f970a-25a7-413d-b916-47864e865a5e",
        "status": "completed",
        "created_at": "2025-11-17T21:14:40+00:00",
        "updated_at": "2025-11-17T21:14:40+00:00",
        "executed_at": "2025-11-17T21:14:40+00:00"
      },
      "created_at": "2025-11-17T21:14:40+00:00",
      "updated_at": "2025-11-17T21:14:40+00:00",
      "triggered_by": "client.created",
      "previous_step": {
        "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
        "name": "Send SMS",
        "uuid": "f096c164-fea1-49f9-8e4e-442c104baaea",
        "status": "completed",
        "created_at": "2025-11-17T21:14:40+00:00",
        "updated_at": "2025-11-17T21:14:40+00:00",
        "executed_at": "2025-11-17T21:14:40+00:00"
      }
    }
  ]
}