Updates the price details of multiple variants in bulk (max 1000 at a time). This includes the retail price, discounted price, and currency.
Request
Body Params application/json
{
"items": [
{
"price": 31.4,
"retail_price": 45,
"currency": "USD",
"sku": "HBCV00006RXNEP",
"channel": "channel1",
"discount_percentage": 15,
"company_id": 11111
}
]
}
Request Code Samples
curl --location --request PUT '/webhooks/price-update' \
--header 'Content-Type: application/json' \
--data-raw '{
"items": [
{
"price": 31.4,
"retail_price": 45,
"currency": "USD",
"sku": "HBCV00006RXNEP",
"channel": "channel1",
"discount_percentage": 15,
"company_id": 11111
}
]
}'
Responses
application/json Modified at 2025-03-27 13:23:41