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

Update SKU Inventory ​

Batch update the available stock and alert threshold for product SKUs.

Basic Information ​

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

Request Headers ​

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <accessToken>

Request Body Parameters ​

ParameterTypeRequiredDescription
skuListarrayYesList of SKU stock updates
skuList[].idintegerYesProduct SKU ID
skuList[].stockintegerYesAvailable stock
skuList[].alertStockintegerNoStock alert threshold

Request Example ​

http
PUT /merchant-api/seller/product-stock HTTP/1.1
Host: paas-gateway.imetastore.io
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
Content-Type: application/json

{
  "skuList": [
    {
      "id": 3001591587541073001,
      "stock": 500,
      "alertStock": 50
    },
    {
      "id": 3001591587541073002,
      "stock": 200,
      "alertStock": 20
    }
  ]
}

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).
  • Stock changes take effect immediately.

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