Skip to main content
POST
/
job
/
{job_id}
/
retry
Retry Job
curl --request POST \
  --url https://{base_url}/job/{job_id}/retry \
  --header 'X-API-Key: <api-key>'
{
"id": "aca11415-e6a5-4800-aa36-e5f98accc2b6",
"status": "IN_QUEUE",
"message": "Job queued for retry"
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

job_id
string
required

Job identifier

Response

Job queued for retry

id
string<uuid>

Job ID (same as the original job being retried)

Example:

"aca11415-e6a5-4800-aa36-e5f98accc2b6"

status
enum<string>

Job status after retry (will be IN_QUEUE)

Available options:
IN_QUEUE
Example:

"IN_QUEUE"

message
string

Status message

Example:

"Job queued for retry"