Body
application/json
Request to get a single execution
ID of the execution to retrieve
Response
Execution events retrieved successfully
Execution events result
Array of execution events and block spans for the execution
curl --request POST \
--url https://api.kaizenautomation.com/executions/getEvents \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"events": [
{
"type": "<string>",
"spanId": "<string>",
"block": {
"id": "<string>",
"name": "<string>",
"blockReferenceId": "<string>",
"transformerFn": "<string>",
"type": "<string>",
"locator": {
"role": "<string>",
"text": "<string>",
"label": "<string>",
"placeholder": "<string>",
"altText": "<string>",
"title": "<string>",
"css": "<string>",
"xpath": "<string>"
},
"isCacheable": true,
"skipIfNotPresent": true,
"data": {
"loginId": "<string>",
"isParameter": true
},
"parentRelationship": {
"blockDepth": 123,
"positionInSequence": 123,
"parentBlockId": "<string>",
"parentSequenceId": "sequence"
}
},
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"events": [
"<any>"
],
"level": "Info"
}
]
}
Retrieves execution events and block spans for a single execution by ID
curl --request POST \
--url https://api.kaizenautomation.com/executions/getEvents \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
{
"events": [
{
"type": "<string>",
"spanId": "<string>",
"block": {
"id": "<string>",
"name": "<string>",
"blockReferenceId": "<string>",
"transformerFn": "<string>",
"type": "<string>",
"locator": {
"role": "<string>",
"text": "<string>",
"label": "<string>",
"placeholder": "<string>",
"altText": "<string>",
"title": "<string>",
"css": "<string>",
"xpath": "<string>"
},
"isCacheable": true,
"skipIfNotPresent": true,
"data": {
"loginId": "<string>",
"isParameter": true
},
"parentRelationship": {
"blockDepth": 123,
"positionInSequence": 123,
"parentBlockId": "<string>",
"parentSequenceId": "sequence"
}
},
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"events": [
"<any>"
],
"level": "Info"
}
]
}
Request to get a single execution
ID of the execution to retrieve
Execution events retrieved successfully
Execution events result
Array of execution events and block spans for the execution
Show child attributes