Skip to main content
POST
https://backend.anglera.com
/
products
/
price-report
Create Price Report
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.

Request

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

Body Parameters

name
string
required
Product display name
sku
string
Stock Keeping Unit
sheet_id
string
required
ID of the sheet

Response

message
string
Success message
data
object
The product data
Example Response
{
  "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"
  }
}