Jobs

Regenerate a single image

This endpoint allows you to regenerate a specific image from a completed or failed batch job. The image will be reprocessed with the same parameters (identity_code, processing_options) that were used in the original job. The correct processor will be used based on the job type (model_swap, flat_2_model, etc.).

Non-destructive versioning: A new ImageResult record is created with an incremented version number, preserving the original. The new version starts with status="pending" and will be updated by the worker upon completion.

POST
/jobs/{job_id}/regenerate/{image_index}
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Path Parameters

job_idstring
image_indexinteger
Formatint32

Response Body

Examples

curl -X POST "https://loading/jobs/string/regenerate/0"
{
  "image_index": 0,
  "message": "string",
  "success": true
}
Empty