create or update product pricing
Note: Price sent here should exclusive of VAT
Request
Body Params application/json
{
"mp_code": "string",
"items": [
{
"partner_sku": "string",
"country_code": "sa",
"price_usd": 0,
"discount_percentage": 0,
"is_active": true,
"xpi_misc": {}
}
]
}
Request Code Samples
curl --location --request POST '/pricing/create-update' \
--header 'Content-Type: application/json' \
--data-raw '{
"mp_code": "string",
"items": [
{
"partner_sku": "string",
"country_code": "sa",
"price_usd": 0,
"discount_percentage": 0,
"is_active": true,
"xpi_misc": {}
}
]
}'
Modified at 2025-02-11 18:35:26