We announce the release of a new API version aimed at providing convenience for our partners using the service.
{
"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"
}
]
}
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"
}
]
}'
{
"data": {
"tracking_code": "string"
},
"error": true,
"error_code": "string",
"messages": "string",
"request_id": "string"
}