Appearance
Update SKU Inventory ​
Batch update the available stock and alert threshold for product SKUs.
Basic Information ​
| Property | Value |
|---|---|
| Method | PUT |
| Path | /seller/product-stock |
| 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 |
|---|---|---|---|
skuList | array | Yes | List of SKU stock updates |
skuList[].id | integer | Yes | Product SKU ID |
skuList[].stock | integer | Yes | Available stock |
skuList[].alertStock | integer | No | Stock 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.
