cURL
curl --request POST \ --url https://backend.anglera.com/products/price-report \ --header 'Content-Type: application/json' \ --header 'X-Anglera-API-Key: <api-key>' \ --data ' { "name": "<string>", "sku": "<string>", "sheet_id": "<string>" } '
{ "message": "<string>", "data": { "id": 123, "name": "<string>", "sku": "<string>", "sheet_id": "<string>", "status": "<string>" } }
Creates a new product and queues it for competitive price report generation
curl -X POST "https://backend.anglera.com/products/price-report" \ -H "X-Anglera-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Bosch 18V Brushless Brad Nailer Kit", "sku": "GNH18V-18MB12-RT", "sheet_id": "3910" }'
Show Product object
QUEUED
{ "message": "Price report queued for generation", "data": { "id": 4727220, "name": "Bosch 18V Brushless Brad Nailer Kit", "sku": "GNH18V-18MB12-RT", "sheet_id": "3910", "status": "QUEUED" } }