Skip to content
💡 Want to test this API interactively? Open API Playground ↗

Update SKU Price ​

Batch update the price for product SKUs.

Basic Information ​

PropertyValue
MethodPUT
Path/seller/product-sku/price
AuthenticationBearer Token
Content-Typeapplication/json

Request Headers ​

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <accessToken>

Request Body Parameters ​

ParameterTypeRequiredDescription
productSkuPricesarrayYesList of SKU price updates
productSkuPrices[].idintegerYesProduct SKU ID
productSkuPrices[].pricenumberYesNew price
currencyCodestringYesCurrency 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 USD and EUR.

All game copyrights, trademarks, and service marks belong to their respective owners.