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 'Content-Type: application/json' \
  --data '{
  "status": "<string>",
  "duration_ms": 123,
  "error_message": "<string>"
}'
"<any>"

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

The response is of type any.