Authentication
Browser Sessions
Workflows
Instructor
API Reference
Run single block
Executes a single block by ID within an instructor execution context
POST
/
instructor
/
executions
/
runBlock
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/instructor/executions/runBlock \
--header 'Content-Type: application/json' \
--data '{
"blockId": "<string>",
"params": {},
"instructorExecutionId": "<string>"
}'
Copy
Ask AI
{
"result": "<any>"
}
Body
application/json
Response
200
application/json
Block executed successfully
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/instructor/executions/runBlock \
--header 'Content-Type: application/json' \
--data '{
"blockId": "<string>",
"params": {},
"instructorExecutionId": "<string>"
}'
Copy
Ask AI
{
"result": "<any>"
}
Assistant
Responses are generated using AI and may contain mistakes.