Update product pricing information
This endpoint is used to update pricing settings for your products - it can be used to update only one product based on our ID or your own product ID. If provided with array of ID's it will be handled as batch
POST
/pricing
curl \
--request POST 'api.services.omnicado.com/api/v2/pricing' \
--header "X-OMNICADO-TOKEN: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"operationId":"priceUpdate","items":[{"remoteId":"H1234443","productSetId":1234,"pricingStrategy":[{"price":129.0,"currency":"CZK","connectorId":"mallCz"}]}]}'
Request examples
{
"operationId": "priceUpdate",
"items": [
{
"remoteId": "H1234443",
"productSetId": 1234,
"pricingStrategy": [
{
"price": 129.0,
"currency": "CZK",
"connectorId": "mallCz"
}
]
}
]
}