- 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
Order Pack
PUT
https://s.boxme.asia/api/v2/orders/fulfill/pack/
Last modified:2025-02-20 03:08:26
Seller Shipping/Platform Shipping: Seller arranges their own shipping, and upload a tracking number and courier.
Boxme Shipping: Do not call this API.
Request
Header Params
Content-Type
string
optional
Example:
application/json
Authorization
string
optional
Example:
Token {{API_TOKEN}}
Body Params application/json
tracking_number
string
required
self_shipment
object
required
courier_tracking_code
string
required
courier_name
string
required
org_courier_name
string
optional
handover_method
string
required
Default:
pickup
Examples:
pickupdropoff
shipping_label
string <uri>
optional
fulfill_type
string | null
optional
Default:
standard
Examples:
nowprioritystandard
fulfill_sla_time
integer
required
store_created_time
integer
required
Example
{
"tracking_number": "BM889493738484",
"self_shipment": {
"courier_tracking_code": "JNT45453434343",
"courier_name": "GHN"
},
"handover_method": "pickup",
"shipping_label": "https://storage.googleapis.com/boxme-cloud/label/2023/11/OWRhYTNmODUtMGViNS00NjYwLWFlYWYtMmRjOGQzYzg3YWFh_gfw.png",
"fulfill_type": null,
"fulfill_sla_time": 0,
"store_created_time": 0
}
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 PUT 'https://s.boxme.asia/api/v2/orders/fulfill/pack/' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"tracking_number": "BM889493738484",
"self_shipment": {
"courier_tracking_code": "JNT45453434343",
"courier_name": "GHN"
},
"handover_method": "pickup",
"shipping_label": "https://storage.googleapis.com/boxme-cloud/label/2023/11/OWRhYTNmODUtMGViNS00NjYwLWFlYWYtMmRjOGQzYzg3YWFh_gfw.png",
"fulfill_type": null,
"fulfill_sla_time": 0,
"store_created_time": 0
}'
Responses
🟢200Success
application/json
Body
data
object
required
label_url
string
required
tracking_number
string
required
courier_name
string
required
service_code
string
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
integer
required
total
integer
required
Example
{
"data": {
"label_url": "https://s.boxme.asia/api/v1/orders/awb-label/MzEwZWNmYTktYWY1Zi00OTM2LTk4M2EtYmE2MGM5YmYxN2Ez",
"tracking_number": "BM65221104356",
"courier_name": "J&T Express",
"service_code": "BM_DBS"
},
"error": false,
"error_code": "",
"messages": "Update pack order successfully.",
"request_id": 1703485822,
"total": 0
}
Modified at 2025-02-20 03:08:26