Getting Started
Account Management
Token Management
Order Management
Shipment Management
Shipment Management
Shipment Rating
Use the /rate endpoint to request a shipping rate
Request Parameters
Address
Box Information
Shipping Information
Item
Request Example
{
"FromAddress": {
"FirstName": "string",
"LastName": "string",
"Email": "string",
"Phone": "string",
"Address1": "string",
"Address2": "string",
"Address3": "string",
"City": "string",
"State": "string",
"Zip": "string", // *required
"Country": "string" // *required
},
"ToAddress": {
"FirstName": "string",
"LastName": "string",
"Email": "string",
"Phone": "string",
"Address1": "string",
"Address2": "string",
"Address3": "string",
"City": "string",
"State": "string",
"Zip": "string", // *required
"Country": "string" // *required
},
"BoxInformation": {
"Weight": "decimal", // *required
"Length": "decimal", // *required
"Height": "decimal", // *required
"Width": "decimal", // *required
"PackageType": "string" // *required ["Box", "Softpack"]
},
"ShippingInformation": {
"SaturdayDelivery": "bool",
"SignatureRequired": "bool",
"Insurance": "bool"
},
"Items": [
{
"ItemCode": "string",
"UPC": "string",
"Price": "decimal",
"Quantity": "string",
"HTSCode": "string",
"Weight": "decimal"
}
]
}Successful Response Example
{
"results": {
"InsuranceCost": "decimal",
"InsuranceAmount": "decimal",
"Weight": "decimal",
"Width": "decimal",
"Height": "decimal",
"Length": "decimal",
"Prices": [
{
"Rate": "decimal",
"ServiceLevel": "string"
},
{
"Rate": "decimal",
"ServiceLevel": "string"
}
]
}
}
Error Response Example
{ "success": false, "error": "string" }