Skip to content

Price Update

API Reference

EnvironmentMethodEndpoint
SandboxPUThttps://api-develop.unimall.ai/supplier/prices
ProductionPUThttps://api-prod.unimall.ai/supplier/prices

Description

This method allows you to update the prices.
We recommend you update the prices whenever it changes.

Request Parameters

Field NameTypeIs RequiredDescriptionSample Input
skuStringYesThe SKU of the product.SKU673698629
currencyCodeStringYesThe currency code.Allowed values: CNY, RUB, USD, TRY
salePriceNumberYesThe sale price of the product.390.90

Sample Curl Request

curl -X 'PUT' \
'https://api-develop.unimall.ai/supplier/prices' \
-H 'accept: text/plain' \
-H 'X-API-Key: *****' \
-H 'Content-Type: application/json' \
-d '{
"sku": "SKU673698629",
"currencyCode": "CNY",
"salePrice": 390.90
}

Sample Response

HTTP 200

{
"data": {},
"isSuccess": true
}