Retry a job
POST/job/:id/retry
Create a new job using the same operation data as an existing job. The original job is preserved. Returns the new job ID.
Request
Path Parameters
UUID of the job to retry.
- application/json
Body
Override target hostname for the retried job. Defaults to _any if not specified.
Responses
- 201
- 400
- 401
- 403
- 404
- 500
The retry job was created successfully.
- application/json
- Schema
- Example (from schema)
Schema
Unique identifier for the created job.
Initial status of the job.
The KV revision number.
Creation timestamp.
{
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "unprocessed",
"revision": 1,
"timestamp": "2025-06-14T10:00:00Z"
}
Invalid request parameters.
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Unauthorized - API key required
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Forbidden - Insufficient permissions
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Job not found.
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Error retrying job.
- application/json
- Schema
- Example (from schema)
Schema
A description of the error that occurred.
Additional details about the error.
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}