- 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
Update Document
PUT
https://s.boxme.asia/api/v2/orders/{tracking_number}/update_document/
Last modified:2025-02-10 04:55:52
Request
Path Params
tracking_number
string
required
Header Params
Content-Type
string
optional
Example:
application/json
Authorization
string
optional
Example:
Token {{API_TOKEN}}
Body Params application/json
documents
array [object {4}]
required
document_name
string
required
quantity
integer
required
>= 1<= 3
Default:
1
url
string <uri>
required
type
enum<string>
required
Allowed values:
invoicepolabelotherbillx80
Example
{
"documents": [
{
"document_name": "test.jpg",
"quantity": 1,
"url": "https://doccument.com/test.jpg"
},
{
"document_name": "test2.pdf",
"quantity": 2,
"url": "https://doccument.com/test.pdf"
}
]
}
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//update_document/' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"documents": [
{
"document_name": "test.jpg",
"quantity": 1,
"url": "https://doccument.com/test.jpg"
},
{
"document_name": "test2.pdf",
"quantity": 2,
"url": "https://doccument.com/test.pdf"
}
]
}'
Responses
🟢200OK
application/json
Body
data
object
required
tracking_code
string
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": {
"tracking_code": "string"
},
"error": true,
"error_code": "string",
"messages": "string",
"request_id": "string"
}
Modified at 2025-02-10 04:55:52