Skip to main content
POST
/
executions
/
get
Get execution
curl --request POST \
  --url https://api.kaizenautomation.com/executions/get \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "execution": {
    "id": "<string>",
    "workflow": {
      "id": "<string>",
      "name": "<string>"
    },
    "batch": {
      "id": "<string>",
      "name": "<string>"
    },
    "logins": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ],
    "authentications": [
      {
        "browserSessionId": "<string>",
        "status": "<string>",
        "liveViewUrl": "<string>"
      }
    ],
    "startTime": "2023-11-07T05:31:56Z",
    "params": {},
    "metadata": {},
    "name": "<string>",
    "startBlock": "<any>",
    "downloads": {
      "status": "pending",
      "files": [
        {
          "id": "<string>",
          "name": "<string>",
          "mimeType": "<string>",
          "sizeBytes": 123,
          "downloadUrl": "<string>",
          "key": "<string>"
        }
      ],
      "message": "<string>"
    },
    "contextAuthentications": [
      {
        "contextAuthenticationId": "<string>",
        "loginSummary": {
          "loginId": "<string>",
          "name": "<string>",
          "isManual": true
        },
        "authenticationStatus": "Unauthenticated"
      }
    ],
    "parentExecutionId": "<string>",
    "sessionId": "<string>",
    "status": "InProgress",
    "liveViewUrl": "<string>",
    "browserSessionId": "<string>"
  }
}

Body

application/json

Request to get a single execution

id
string
required

ID of the execution to retrieve

Response

Execution retrieved successfully

Single execution result

execution
object
required

Recording of a workflow execution

  • Active Execution (In Progress or Paused)
  • Enqueued Execution
  • Active Execution (In Progress or Paused)
  • Completed Execution
  • Failed Execution
I