Query parameters

  • 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]

      Additional properties are allowed.

GET /api/v1/automation-executions
curl \
 --request GET https://api.plannrcrm.com/api/v1/automation-executions \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Send client welcome pack to newly created client",
      "uuid": "c1252257-1abe-4ae7-97fb-a3e927ef13c3",
      "steps": [
        {
          "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
          "name": "Send SMS",
          "uuid": "0a7b6841-53ea-43c9-a42d-6b99a85b2b0d",
          "status": "completed",
          "created_at": "2025-02-20T10:13:05+00:00",
          "updated_at": "2025-02-20T10:13:05+00:00",
          "executed_at": "2025-02-20T10:13:05+00:00"
        }
      ],
      "status": "in_progress",
      "created_at": "2025-02-20T10:13:05+00:00",
      "updated_at": "2025-02-20T10:13:05+00:00",
      "triggered_by": "client.created"
    }
  ]
}