Getting Started
Account Management
Token Management
Order Management
Shipment Management
Shipment Management
POST /public/quote
Returns all available shipping-rate quotes for a given origin/destination.
**Request:**
POST /public/quoteContent-Type: application/jsonAuthorization: Bearer <token>
Successful Response
1HTTP 200
2{
3 "success": true,
4 "result": {
5 "OrderID": 0,
6 "Prices": [ /* array of rate objects */ ]
7 }
8}