Get an automation execution

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

Path parameters

  • id string Required

    The ID of the automation execution.

Responses

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

      UUID of automation execution

    • Timestamp of when this execution was created

    • Timestamp of when this execution was updated

    • status string

      Current status of this automation execution

    • Name of what triggered this automation execution

    • steps array[object]

      Collection of the steps in this execution

    • name string

      Name of the automation blueprint

GET /api/v1/automation-executions/{id}
curl \
 -X GET https://api.plannrcrm.com/api/v1/automation-executions/id \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "Send client welcome pack to newly created client",
  "uuid": "0dcf4963-9b64-4cae-acf9-6ce263fc777c",
  "steps": [
    {
      "info": "\"[{errors : \"the account_uuid field is required\" }]\"",
      "name": "Send SMS",
      "uuid": "1587c39c-dd12-46c7-9b55-9d90da53b059",
      "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"
}