Skip to main content
POST
https://backend.anglera.com
/
products
/
price-report
/
refresh-sheet
Refresh Sheet Price Reports
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.

Request

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"
  }'

Body Parameters

sheet_id
string
required
ID of the sheet to refresh price reports for

Response

message
string
Summary of the operation
sheet_id
string
The sheet ID that was processed
total_products
number
Total number of products in the sheet
queued
number
Number of products queued for price report refresh
Example Response
{
  "message": "Queued 152 product(s) for price report refresh",
  "sheet_id": "3910",
  "total_products": 152,
  "queued": 152
}