Skip to main content
POST
/
executions
/
getRecoveryAgentContext
Get recovery agent context
curl --request POST \
  --url https://api.kaizenautomation.com/executions/getRecoveryAgentContext \
  --header 'Content-Type: application/json' \
  --data '{
  "executionId": "exec_123",
  "spanId": "span_456"
}'
{
  "context": "This is a stub recovery agent context for the block execution."
}

Body

application/json
executionId
string
required

The execution ID

Example:

"exec_123"

spanId
string
required

The span ID for the block execution

Example:

"span_456"

Response

Recovery agent context retrieved successfully

context
string
required

The recovery agent context for the block span

Example:

"This is a stub recovery agent context for the block execution."