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
ID of the sheet containing failed products
Response
The sheet ID that was processed
Total products found with ERROR or NO_RESULTS status
Number of products successfully queued for retry
Products Retried
No Failed Products
{
"message": "Queued 5 failed product(s) for retry",
"sheet_id": "100",
"total_failed": 5,
"queued": 5
}
{
"message": "No failed products found in sheet",
"queued": 0
}
Errors
| Status Code | Description |
|---|
400 | API key not provided |
401 | Invalid API key |
404 | Sheet not found |
500 | Internal server error |