Get Stock Report
POST
/api/v2/sellers/wms/products/report/stocks/Last modified: 9 months ago
Get Stock Report (Expiry date, Batch/Lot).
Rate limit: 1rps/IP & 30rq/minute
Request
Header Params
Content-Type
string
optional
Example:
application/json
Authorization
string
optional
Example:
Token {{API_TOKEN}}
Body Params application/json
seller_skus
array[string]
required
Example
{
"seller_skus": [
"KIEN_TEST_1",
"DLGLASS0001"
]
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array [object {7}]
required
bsin
string
required
seller_sku
string
required
product_name
string
required
batch_lot
null
required
expire_date
null
required
quantity
integer
required
stock_date
string
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": [
{
"bsin": "BSN33152992878894",
"seller_sku": "DLGLASS0001",
"product_name": "Cốc sứ hoạ tiết NOWAY DL GLASS - Hàng chính hãng",
"batch_lot": null,
"expire_date": null,
"quantity": 908,
"stock_date": "2023-10-10"
},
{
"bsin": "BSN33152992878894",
"seller_sku": "DLGLASS0001",
"product_name": "Cốc sứ hoạ tiết NOWAY DL GLASS - Hàng chính hãng",
"batch_lot": null,
"expire_date": null,
"quantity": 1224,
"stock_date": "2024-01-18"
},
{
"bsin": "BSN33152992878894",
"seller_sku": "DLGLASS0001",
"product_name": "Cốc sứ hoạ tiết NOWAY DL GLASS - Hàng chính hãng",
"batch_lot": null,
"expire_date": null,
"quantity": 1,
"stock_date": "2024-01-22"
}
],
"error": false,
"error_code": "",
"messages": "",
"request_id": "65e157c825519e005ede58bc"
}
Last modified: 9 months ago