Delete Job By Order ID

Delete a specific job by its order ID.

Notes:

  • Requires the order ID as a path parameter.
  • Returns a simple success response indicating deletion status.
  • The order ID should be a valid string value (e.g., "LPLL1128").

Parameters

No parameters.
DELETE/v1/jobs/order/{order_id}
curl https://api.lynxo.ai/v1/jobs/order/{order_id} \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR....." \
  -H "Content-Type: application/json" \
  -X DELETE \
  -d '{}'
RESPONSE
{
  "success": true
}