POST
/
job
/
retry
Retry Job
curl --request POST \
  --url https://api.getomni.ai/job/retry \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "jobId": "<string>"
}'
{ "success": true }
Retries a previously failed or cancelled job. This endpoint is useful if a job encountered an error or was cancelled and you want to reprocess it. Jobs that are already completed or still in progress cannot be retried.

Body Parameters

jobId
string
required
Job ID of the request to retry.

Response

success
boolean
Whether the job was successfully queued for retry.
{ "success": true }