Skip to main content
POST
/
instructorExecution
/
partialExecutions
/
list
List partial executions
curl --request POST \
  --url https://api.kaizenautomation.com/instructorExecution/partialExecutions/list \
  --header 'Content-Type: application/json' \
  --data '
{
  "startBlockId": "<string>",
  "endBlockId": "<string>"
}
'
{
  "partialExecutions": [
    {
      "id": "<string>",
      "status": "InProgress",
      "startBlockId": "<string>",
      "endBlockId": "<string>",
      "createdAt": "<string>",
      "blockHistory": [
        {
          "id": "<string>",
          "blockId": "<string>",
          "blockType": "<string>",
          "eventType": "<string>",
          "createdAt": "<string>",
          "context": {},
          "output": "<unknown>"
        }
      ]
    }
  ],
  "total": 123
}

Body

application/json
startBlockId
string
required

External ID of the start block to filter by

endBlockId
string
required

External ID of the end block to filter by

Response

Partial executions retrieved successfully

partialExecutions
object[]
required
total
number
required

Total number of partial executions