- 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 Pickup List
GET
https://s.boxme.asia/api/v2/sellers/pickup
Last modified:2023-12-29 08:52:21
Request
Query Params
page
integer
optional
Example:
1
page_size
integer
optional
Example:
25
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/sellers/pickup?page=1&page_size=25' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
data
object
required
total_count
integer
required
pickup
array [object {19}]
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": {
"total_count": 0,
"pickup": [
{
"pickup_id": 0,
"country": "string",
"warehouse_code": "string",
"pickup_name": "string",
"contact_name": "string",
"contact_phone": "string",
"address": "string",
"province_id": 0,
"province_name": "string",
"district_id": 0,
"district_name": "string",
"sub_district_id": 0,
"sub_district_name": "string",
"zipcode": "string",
"lat": "string",
"lng": "string",
"active": 0,
"created_time": 0,
"updated_time": 0
}
]
},
"error": true,
"error_code": "string",
"messages": "string",
"request_id": "string"
}
Modified at 2023-12-29 08:52:21