Skip to main content
DELETE
/
jobs
/
{job_id}
Cancel a job
curl --request DELETE \
  --url https://api.mindcase.co/api/v1/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "job_abc123def456",
  "status": "cancelled",
  "message": "Job has been cancelled."
}

Authorizations

Authorization
string
header
required

API key in the format mk_live_...

Path Parameters

job_id
string
required

Response

Job cancelled

job_id
string
required
Example:

"job_abc123def456"

status
enum<string>
required
Available options:
cancelled
Example:

"cancelled"

message
string
required
Example:

"Job has been cancelled."