Skip to content
getgeolens.com

Retry Job

POST
/jobs/{job_id}/retry
curl --request POST \
--url https://example.com/api/jobs/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/retry \
--header 'Authorization: Bearer <token>'

Retry a failed ingestion job by re-queuing.

Only callable on jobs with status ‘failed’. The staging file must still exist (preserved on failure for retry).

job_id
required
Job Id
string format: uuid

Successful Response

Media type application/json
UploadResponse
object
job_id
required
Job Id

Unique identifier for the ingestion job. Use this to poll status and to commit the upload.

string format: uuid
status
Status

Initial job status. Always ‘pending’ on creation.

string
default: pending
message
required
Message

Human-readable message describing the upload result.

string
Example
{
"status": "pending"
}

Bad request — invalid query parameters or payload

Unauthorized — missing or invalid credentials

Forbidden — caller lacks access to this resource

Not found

Validation error

Internal server error