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
GET /api/v1/automation-executions
curl \
 -X GET https://api.plannrcrm.com/api/v1/automation-executions \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Send client welcome pack to newly created client",
      "uuid": "534b84d4-1700-486a-b293-89b029cedcf9",
      "steps": [
        {
          "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
          "name": "Send SMS",
          "uuid": "534c85aa-ebfa-499a-b5b9-2986ea9d40e2",
          "status": "completed",
          "created_at": "2024-10-16T11:10:16+01:00",
          "updated_at": "2024-10-16T11:10:16+01:00",
          "executed_at": "2024-10-16T11:10:16+01:00"
        }
      ],
      "status": "in_progress",
      "created_at": "2024-10-16T11:10:16+01:00",
      "updated_at": "2024-10-16T11:10:16+01:00",
      "triggered_by": "client.created"
    }
  ]
}