Skip to main content
POST
/
api
/
v1
/
executions
/
{execution_id}
/
job
/
{job_id}
/
status
Update Job Execution Status
curl --request POST \
  --url https://control-plane.kubiya.ai/api/v1/executions/{execution_id}/job/{job_id}/status \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "<string>",
  "duration_ms": 123,
  "error_message": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

execution_id
string
required
job_id
string
required

Body

application/json

Request to update job execution status

status
string
required
duration_ms
integer | null
error_message
string | null

Response

Successful Response