- 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 (Dev)
- Location
- Webhooks
Get B2B Pickup TimeSlot
GET
https://s.boxme.asia/api/v2/courier/pricing/b2b/pickup-time-slots
Last modified:2025-01-23 06:48:18
Request
Query Params
is_priority
boolean
optional
Example:
false
Header Params
Authorization
string
required
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/courier/pricing/b2b/pickup-time-slots?is_priority=false' \
--header 'Authorization: Token {{API_TOKEN}}'
Responses
🟢200Success
application/json
Body
data
array [object {4}]
required
pickup_time_id
string
required
pickup_time_label
string
required
is_available
boolean
required
reason
null
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": [
{
"pickup_time_id": "2025012319H",
"pickup_time_label": "2025-01-23 19H",
"is_available": true,
"reason": null
},
{
"pickup_time_id": "2025012412H",
"pickup_time_label": "2025-01-24 12H",
"is_available": true,
"reason": null
},
{
"pickup_time_id": "2025012419H",
"pickup_time_label": "2025-01-24 19H",
"is_available": true,
"reason": null
},
{
"pickup_time_id": "2025012512H",
"pickup_time_label": "2025-01-25 12H",
"is_available": true,
"reason": null
},
{
"pickup_time_id": "2025012519H",
"pickup_time_label": "2025-01-25 19H",
"is_available": true,
"reason": null
},
{
"pickup_time_id": "2025012612H",
"pickup_time_label": "2025-01-26 12H",
"is_available": true,
"reason": null
}
],
"error": false,
"error_code": "",
"messages": "",
"request_id": "678f444c99cfec98e860675e"
}
Modified at 2025-01-23 06:48:18