Skip to main content
POST
/
executions
/
resume
Resume execution
curl --request POST \
  --url https://api.kaizenautomation.com/executions/resume \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "manuallyCompletedBlock": {
    "blockId": "<string>",
    "spanId": "<string>"
  }
}'
{
  "success": true,
  "message": "<string>"
}

Body

application/json

Request to get a single execution

id
string
required

ID of the execution to retrieve

manuallyCompletedBlock
object

Information about a block that was completed manually, if any

Response

Execution resumed successfully

success
boolean
required

Whether the execution was resumed successfully

message
string
required

Status message

I