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

HTTP 200
{
  "success": true,
  "result": {
    "OrderID": 0,
    "Prices": [ /* array of rate objects */ ]
  }
}