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
RequiredThe ID of the job to delete.
DELETE/v1/jobs/{id}
bash
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
}