Shipment Management
Shipment Management

POST /public/shipping-info

Retrieves shipping rate quotes for an existing order

**Request:**

POST /public/shipping-infoContent-Type: application/jsonAuthorization: Bearer <token>

Field Type Required Default
orderID integer Yes
shipDate DateTime No now (UTC)
signature boolean No false
saturday boolean No false
handling boolean No false
rateIndex integer No null
ignoreValidation boolean No false
weight number No 0
length number No 11.5
width number No 15
height number No 1
noCache boolean No false
express boolean No false
returnPackage boolean No false
upsPackageType string No null
hsItems string No null
packageType string No null
insuredValue number No 0

Successful Response

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