cURL
curl --request POST \ --url https://backend.anglera.com/products/price-report/refresh-sheet \ --header 'Content-Type: application/json' \ --header 'X-Anglera-API-Key: <api-key>' \ --data ' { "sheet_id": "<string>" } '
{ "message": "<string>", "sheet_id": "<string>", "total_products": 123, "queued": 123 }
Refreshes price reports for all products in a sheet
curl -X POST "https://backend.anglera.com/products/price-report/refresh-sheet" \ -H "X-Anglera-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "sheet_id": "3910" }'
{ "message": "Queued 152 product(s) for price report refresh", "sheet_id": "3910", "total_products": 152, "queued": 152 }