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>

Field Type Required Default
fromZip string Yes
toZip string Yes
shipDate DateTime No now (UTC)
signature boolean No false
country string No "US"
weight number No 0
length number No 0
width number No 0
height number No 0
upsPackageType string No null
packageType string No null

Successful Response

1HTTP 200
2{
3  "success": true,
4  "result": {
5    "OrderID": 0,
6    "Prices": [ /* array of rate objects */ ]
7  }
8}
On this page
POST /public/quoteSuccessful Response