Shipment API
Use these APIs to manage your shipments on ValoreBooks.
Routes
https://test.valorebooks.com/buyback/shipment/{id} (qa)
https://api.valorebooks.com/buyback/shipment/{id} (production)
GET
Get information for a particular shipment
Responses
200
Various properties of the requested shipment
{
"id": 109457,
"shipmentDate": "2016-08-16",
"carrier": "UPS",
"carrierTrackingNumber": "1Z12345E1512345676",
"itemCount": 3,
"shipmentValue": 132.65,
"boxes": [
{
"id": 5003049,
"items": [
{
"id": 4299712
},
{
"id": 4299713
}
]
},
{
"id": 5003050,
"items": [
{
"id": 4299714
}
]
}
]
}
403
Forbidden
No buyer found with given credentials.
404
Not Found
500
Internal Error
GET Get information for a particular shipment
Responses
200 Various properties of the requested shipment
{
"id": 109457,
"shipmentDate": "2016-08-16",
"carrier": "UPS",
"carrierTrackingNumber": "1Z12345E1512345676",
"itemCount": 3,
"shipmentValue": 132.65,
"boxes": [
{
"id": 5003049,
"items": [
{
"id": 4299712
},
{
"id": 4299713
}
]
},
{
"id": 5003050,
"items": [
{
"id": 4299714
}
]
}
]
}
403 Forbidden
No buyer found with given credentials.