Skip to main content
POST
https://backend.anglera.com
/
products
/
retry
/
{sheet_id}
Retry Failed Products
curl --request POST \
  --url https://backend.anglera.com/products/retry/{sheet_id} \
  --header 'X-Anglera-API-Key: <api-key>'
{
  "message": "<string>",
  "sheet_id": "<string>",
  "total_failed": 123,
  "queued": 123
}
Retries all products in a sheet that have ERROR or NO_RESULTS status. This re-queues failed products for enrichment processing.
This is useful when vendors have not launched upcoming products yet and you want to check the web periodically for them to become available.

Request

curl -X POST "https://backend.anglera.com/products/retry/100" \
  -H "X-Anglera-API-Key: your_api_key"

Path Parameters

sheet_id
string
required
ID of the sheet containing failed products

Response

message
string
Summary of the operation
sheet_id
string
The sheet ID that was processed
total_failed
number
Total products found with ERROR or NO_RESULTS status
queued
number
Number of products successfully queued for retry
{
  "message": "Queued 5 failed product(s) for retry",
  "sheet_id": "100",
  "total_failed": 5,
  "queued": 5
}

Errors

Status CodeDescription
400API key not provided
401Invalid API key
404Sheet not found
500Internal server error