# Get Bulk Upload Status Retrieve the status and progress of a bulk image upload job. Endpoint: GET /tailored-gen/datasets/{dataset_id}/images/bulk-upload/status ## Path parameters: - `dataset_id` (string, required) The ID of the dataset. ## Header parameters: - `api_token` (string, required) ## Response 200 fields (application/json): - `status` (string) The current status of the upload job. Enum: "pending", "processing", "completed", "failed" - `progress_percentage` (integer) The percentage of images processed. - `total_processed` (integer) The total number of images found in the upload source. - `done` (integer) The number of images successfully uploaded. - `failed` (integer) The number of images that failed to upload. - `failed_images` (array) A list of images that failed to upload, with details on the reason. - `failed_images.filename` (string) The original filename of the failed image. - `failed_images.error_code` (integer) The error code for the failure. - `failed_images.error_message` (string) A descriptive message for the failure.