curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/job/{job_id}/status \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "<string>",
"duration_ms": 123,
"error_message": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Update job_executions record with execution results.
This endpoint is used by workers to update job execution status via HTTP instead of directly accessing the database.
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/job/{job_id}/status \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "<string>",
"duration_ms": 123,
"error_message": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Enter your Kubiya API token (format: Bearer
Successful Response
Was this page helpful?