Delete Job

Delete a specific job by its ID.

Notes:

  • Requires the job ID as a path parameter.
  • Returns a simple success response indicating deletion status.
  • The job ID should be a valid integer value.

Parameters

id
integer
Required
The ID of the job to delete.
DELETE/v1/jobs/{id}
curl https://api.lynxo.ai/v1/jobs/{id} \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR....." \
  -H "Content-Type: application/json" \
  -X DELETE \
  -d '{"id":12345}'
RESPONSE
{
  "success": true
}