- 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)POST
- Get Shipping Option (Dropship)POST
- Create B2C OrderPOST
- Create Delivery OrderPOST
- Create B2B OrderPOST
- Update DocumentPUT
- Request Cancel Delivery OrderPOST
- Cancel OrderPOST
- Get Order DetailGET
- Get Order ListGET
- Get Courier ListGET
- Get Courier ServiceGET
- Get Packed ItemsGET
- Order PackPUT
- Get B2B Pickup TimeSlotGET
- Returns
- Finance
- Location
- Webhooks
- Guidelines
Get Courier List
GET
https://s.boxme.asia/api/v2/courier/names
Last modified:2024-02-06 03:10:27
Request
Query Params
courier_name
string
optional
Example:
express
Header Params
Authorization
string
required
Example:
Token {{API_TOKEN}}
Content-Type
string
optional
Example:
application/json
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/courier/names?courier_name=express' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
data
array[string]
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": [
"Best Express",
"Boxme Express",
"DPEX Express",
"Grab Express",
"J&T Express",
"Selly Express",
"Shopee Express",
"Snappy Express",
"Tiki Express",
"Vietpost Express",
"ZTO Express"
],
"error": false,
"error_code": "",
"messages": "",
"request_id": "65a9f686b778e5b71085c901"
}
Modified at 2024-02-06 03:10:27