Price Update
API Reference
Environment | Method | Endpoint |
---|---|---|
Sandbox | PUT | https://api-develop.unimall.ai/supplier/prices |
Production | PUT | https://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 Name | Type | Is Required | Description | Sample Input |
---|---|---|---|---|
sku | String | Yes | The SKU of the product. | SKU673698629 |
currencyCode | String | Yes | The currency code. | Allowed values: CNY, RUB, USD, TRY |
salePrice | Number | Yes | The 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}