Appearance
Update SKU Price ​
Batch update the price for product SKUs.
Basic Information ​
| Property | Value |
|---|---|
| Method | PUT |
| Path | /seller/product-sku/price |
| Authentication | Bearer Token |
| Content-Type | application/json |
Request Headers ​
| Header | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer <accessToken> |
Request Body Parameters ​
| Parameter | Type | Required | Description |
|---|---|---|---|
productSkuPrices | array | Yes | List of SKU price updates |
productSkuPrices[].id | integer | Yes | Product SKU ID |
productSkuPrices[].price | number | Yes | New price |
currencyCode | string | Yes | Currency code: USD or EUR |
Request Example ​
http
PUT /merchant-api/seller/product-sku/price HTTP/1.1
Host: paas-gateway.imetastore.io
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
Content-Type: application/json
{
"productSkuPrices": [
{
"id": 3001591587541073001,
"price": 12.99
},
{
"id": 3001591587541073002,
"price": 24.99
}
],
"currencyCode": "USD"
}Success Response ​
json
{
"code": "0000",
"msg": "Success",
"time": "2025-12-17T13:44:16.000Z",
"data": true
}Important Notes ​
TIP
- SKU IDs can be obtained from the Get Product List response (
productSkus[].id). - Price changes take effect immediately.
- Supported currencies are
USDandEUR.
