Skip to main content
POST
/
executions
/
retry
Retry execution
curl --request POST \
  --url https://api.kaizenautomation.com/executions/retry \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "success": true,
  "message": "<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 retry an execution

id
string
required

ID of the execution to retrieve

Response

Execution retried successfully

success
boolean
required

Whether the execution was retried successfully

message
string
required

Status message

execution
object
required

The retried execution with updated status

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