post https://api.vtex.com/{accountName}/pricing/prices//fixed/
Creates or updates the fixed prices of an SKU for a specific price table or trade policy. You can add one or multiple fixed prices per SKU.
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
| number | Fixed price value |
| number | SKU List Fixed Price |
| integer | Minimum quantity of the SKU to the fixed price be applied |
| object | Period of time that the fixed price will be applied to the SKU |
↳ | string | Start date of the price |
↳ | string | End date of the price |
Request body examples:
[
{
"value": 45.4,
"listPrice": 50.5,
"minQuantity": 2,
"dateRange": {
"from": "2021-12-30T22:00:00-03:00",
"to": "2021-12-30T22:00:00-04:00"
}
}
]