Authentication
Browser Sessions
Workflows
Instructor
API Reference
Get execution events
Retrieves execution events and block spans for a single execution by ID
POST
/
executions
/
getEvents
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/executions/getEvents \
--header 'Content-Type: application/json' \
--data '{
"executionId": "<string>"
}'
Copy
Ask AI
{
"events": [
{
"type": "<string>",
"spanId": "<string>",
"blockId": "<string>",
"blockName": "<string>",
"blockType": "Mouse",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"events": [
"<any>"
]
}
]
}
Body
application/json
Request to get a single execution
Response
200
application/json
Execution events retrieved successfully
Execution events result
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/executions/getEvents \
--header 'Content-Type: application/json' \
--data '{
"executionId": "<string>"
}'
Copy
Ask AI
{
"events": [
{
"type": "<string>",
"spanId": "<string>",
"blockId": "<string>",
"blockName": "<string>",
"blockType": "Mouse",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"events": [
"<any>"
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.