Get all executions for a single automation blueprint

GET /api/v1/automation-blueprints/{automationBlueprint_uuid}/executions

Path parameters

  • automationBlueprint_uuid string Required

    The UUID of the automation

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'.

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
GET /api/v1/automation-blueprints/{automationBlueprint_uuid}/executions
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/automation-blueprints/dcf0-484e-a0c5-08590fe89a84-f6aa1670/executions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Send client welcome pack to newly created client",
      "uuid": "5aad2fae-07fc-43e8-b98f-318df12a8b61",
      "steps": [
        {
          "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
          "name": "Send SMS",
          "uuid": "bd17c561-2c69-4ee3-96cb-ace6fef7ea3f",
          "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"
    }
  ]
}