Executions
Get execution
Authentication
Workflows
API Reference
Get execution
Retrieves a single execution by ID for the current organization
POST
/
executions
/
get
curl --request POST \
--url https://api.kaizenautomation.com/executions/get \
--header 'Content-Type: application/json' \
--data '{
"executionId": "<string>"
}'
{
"execution": {
"id": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"organizationId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"params": {},
"status": "InProgress",
"liveViewUrl": "<string>"
}
}
Body
application/json
Request to get a single execution
ID of the execution to retrieve
Response
200
application/json
Execution retrieved successfully
Single execution result
Recording of a workflow execution
Unique identifier for the execution
ID of the organization this execution belongs to
When the execution started
Available options:
InProgress
URL for live view of the execution
curl --request POST \
--url https://api.kaizenautomation.com/executions/get \
--header 'Content-Type: application/json' \
--data '{
"executionId": "<string>"
}'
{
"execution": {
"id": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"organizationId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"params": {},
"status": "InProgress",
"liveViewUrl": "<string>"
}
}