- Overview
- Getting Started
- Authentication
- Q&A
- Common Errors
- API Call Flow
- Instant Order Flow
- Boxme's RTO and RPO
- Changelog
- API References
- Location
- Pickup
- Product
- Shipment (ASN)
- Customer
- Orders
- Order API Overview
- Get Shipping Option (Fulfillment)
- Get Shipping Option (Dropship)
- Create B2C Order
- Create Delivery Order
- Create B2B Order
- Update Document
- Request Cancel Delivery Order
- Cancel Order
- Get Order Detail
- Get Order List
- Get Courier List
- Get Courier Service
- Get Packed Items
- Order Pack
- Get B2B Pickup TimeSlot
- Returns
- Finance (Dev)
- Location
- Webhooks
Get Stock Report
POST
https://s.boxme.asia/api/v2/sellers/wms/products/report/stocks/
Last modified:2024-03-01 04:23:59
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
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://s.boxme.asia/api/v2/sellers/wms/products/report/stocks/' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"seller_skus": ["KIEN_TEST_1", "DLGLASS0001"]
}'
Responses
🟢200Success
application/json
Body
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"
}
Modified at 2024-03-01 04:23:59