- 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 ASN Available Timeslot
POST
https://s.boxme.asia/api/v2/sellers/shipments/booking/get-time-slots/
Last modified:2024-04-16 10:58:11
Request
Header Params
Authorization
string
required
Example:
Token {{API_TOKEN}}
Content-Type
string
optional
Example:
application/json
Body Params application/json
shipment_codes
array[string]
required
estimate_arrival_time
integer
required
Example
{
"shipment_codes": [
"SM-VN-331529-26869855"
],
"estimate_arrival_time": 1713556203
}
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 POST 'https://s.boxme.asia/api/v2/sellers/shipments/booking/get-time-slots/' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"shipment_codes": ["SM-VN-331529-26869855"],
"estimate_arrival_time": 1713556203
}'
Responses
🟢200Success
application/json
Body
data
array [object {3}]
required
label
string
required
time_slot_id
integer
required
out_of_working_time
boolean
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": [
{
"label": "00:00 - 00:30",
"time_slot_id": 1713459600,
"out_of_working_time": true
},
{
"label": "00:30 - 01:00",
"time_slot_id": 1713461400,
"out_of_working_time": true
},
{
"label": "01:00 - 01:30",
"time_slot_id": 1713463200,
"out_of_working_time": true
},
{
"label": "01:30 - 02:00",
"time_slot_id": 1713465000,
"out_of_working_time": true
}
],
"error": false,
"error_code": "",
"messages": "",
"request_id": "661ceab8a922c2c1f916212b"
}
Modified at 2024-04-16 10:58:11