curl --request POST \
--url https://clientapi.retailgrid.io/v1/competitor_prices/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"competitor_name": "<string>",
"observed_at": "2023-11-07T05:31:56Z",
"regular_price": 123,
"effective_price": 123,
"product_id": "<string>",
"promo_price": 123,
"currency": "<string>",
"source_url": "<string>",
"competitor_sku": "<string>",
"barcode": "<string>",
"status": "<string>",
"stock": 123
}
]
}
'