Skip to main content
POST
/
job
/
cancel
/
{job_id}
Cancel a job
curl --request POST \
  --url https://api.example.com/job/cancel/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "<string>",
  "message": "<string>",
  "status": "canceling"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Response

Job already canceled (idempotent)