- 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
- Error Codes
- 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
- Location
- Webhooks
- Guidelines
Get Products
GET
https://s.boxme.asia/api/v2.1/sellers/products/list
Last modified:2024-04-12 10:24:09
Rate limit: 1rps/IP & 30rq/minute
Request
Query Params
page
integer
optional
Example:
1
page_size
integer
optional
Example:
20
is_active
integer
optional
Example:
1
keyword
string
optional
Example:
TEST-0002
is_approved
integer
optional
Example:
1
Header Params
Content-Type
string
optional
Example:
application/json
Authorization
string
optional
Example:
Token {{API_TOKEN}}
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 GET 'https://s.boxme.asia/api/v2.1/sellers/products/list?page=1&page_size=20&is_active=1&keyword=TEST-0002&is_approved=1' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
data
object
required
total_count
integer
required
next
null
required
previous
null
required
results
array [object {32}]
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": {
"total_count": 1,
"next": null,
"previous": null,
"results": [
{
"bsin": "BSN33152982758216",
"name": "Sản Phẩm 01",
"seller_sku": "SP00012001",
"barcode_manufacturer": "WH23454808",
"category_id": 3,
"description": "Enter when there is a QC request for the product before warehouse entry.",
"price_sale": 1200000,
"price": 1000000,
"price_wholesale": 0,
"is_digital": false,
"min_quantity": 1,
"warehouse_condition": 1,
"pack_with_bubble": false,
"pack_material": 2,
"weight": 3000,
"volume": "27x36x11",
"images": [],
"manage_by_serial_number": false,
"managed_by_gs1": false,
"require_expire": true,
"outbound_strategy": "FEFO",
"shelf_life": 12,
"expiry_threshold": 3,
"min_inbound_shelf_life": 6,
"is_fragile": true,
"use_shredded_paper": true,
"batch_control": false,
"uom": "PC",
"protective_packaging_inbound": false,
"allow_breakdown": true,
"active": true,
"approve": true
}
]
},
"error": false,
"error_code": "",
"messages": "",
"request_id": ""
}