Skip to content
  • Auto
  • Light
  • Dark
Get Started

List

List Automation Executions
get/api/v1/automation_executions

Invokes the c1.api.automations.v1.AutomationExecutionService.ListAutomationExecutions method.

Returns
automationExecutionsarray of idstringautomationTemplateIdstringcompletedAtstringcontextAutomationContextcreatedAtstringcurrentVersionnumberdeletedAtstringdurationstringisDraftbooleanstateenumupdatedAtstringAutomationExecution
optional

The automationExecutions field.

nextPageTokenstring
optional

The nextPageToken field.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/automation_executions \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "automationExecutions": [
    {
      "id": "id",
      "automationTemplateId": "automationTemplateId",
      "completedAt": "2019-12-27T18:11:19.117Z",
      "context": {
        "context": {
          "foo": "bar"
        }
      },
      "createdAt": "2019-12-27T18:11:19.117Z",
      "currentVersion": 0,
      "deletedAt": "2019-12-27T18:11:19.117Z",
      "duration": "duration",
      "isDraft": true,
      "state": "AUTOMATION_EXECUTION_STATE_UNSPECIFIED",
      "updatedAt": "2019-12-27T18:11:19.117Z"
    }
  ],
  "nextPageToken": "nextPageToken"
}