curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/transitions/override \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"state": "<string>",
"reasoning": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Manually override execution state (admin/debug)
Allows manual state transitions with reasoning. Records the override in the transitions table for audit purposes.
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/transitions/override \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"state": "<string>",
"reasoning": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Enter your Kubiya API token (format: Bearer
Successful Response
Was this page helpful?