Order List
Developing
GET
/store/order
BosOnline/Order
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/store/order?start_date=01/05/2025&end_date=20/05/2025&payment_status=1&category&keyword=Biji Kopi&sort_by&sort_dir=asc&status_order&tracking_status&payment_method=COD&courier=1&start=0&limit=10'
Response Response Example
200 - Success
{
"data": [
{
"invoice_code": "#INV-2243123221",
"payment_at": "20/04/2025 19:20:00",
"customer_name": "Putri Handoyono",
"customer_phone": "081982133213",
"valid_no": true,
"product_name": "Biji Kopi Arabica",
"sku_induk": "ESB-001",
"product_varian": [
{
"name": "Biji Kopi,100 gr",
"sku": "ESB-001-01",
"item_qty": 1,
"price": 45000
}
],
"payment_status": 0,
"tracking_status": 0,
"awb": "-",
"courier_id": 1,
"revenue": 45000,
"customer_dest": "Jetis,Mojokerto",
"payment_method": "NonCOD",
"CS": "CS Bhasri",
"follow_up_attempts": 0
}
],
"total": 1
}
Request
Query Params
start_date
string
optional
Example:
01/05/2025
end_date
string
optional
Example:
20/05/2025
payment_status
integer
optional
Example:
1
category
enum<string>
optional
Allowed values:
product_nameinvoice_codecustomer_namecustomer_phoneskuprovince/district/cityawb
keyword
string
optional
Example:
Biji Kopi
sort_by
integer
optional
sort_dir
enum<string>
optional
Allowed values:
ascdesc
Example:
asc
status_order
string
optional
tracking_status
string
optional
payment_method
enum<string>
optional
Allowed values:
CODNonCOD
Example:
COD
courier
string
optional
Example:
1
start
integer | null
optional
Default:
0
Example:
0
limit
integer
optional
Example:
10
Responses
Modified at 2025-06-19 09:22:54