Download OpenAPI specification:
The uShip Furniture API provides seamless integration for white glove furniture and household goods shipments.
| Environment | URL | Description |
|---|---|---|
| Sandbox | https://api.ushipsandbox.com |
Test environment for development |
| Production | https://api.uship.com |
Live production environment |
Note: Sandbox and production environments require separate API keys.
All API requests require Bearer token authentication.
Authorization: Bearer <your_api_key>
| Guide | Description |
|---|---|
| Furniture and Home API Guide | Overview and Shopify integration comparison |
| Direct Furniture Integrations | Request body details and order of operations |
| Sandbox Testing Guide | Comprehensive sandbox testing documentation |
For questions or assistance, contact: apisupport@uship.com
Get instant shipping quotes for furniture delivery. Use these endpoints to retrieve pricing before creating a listing.
Provides fixed price information for the cost of a carrier shipping household goods in the US and Canada only.
| Content-Type | string application/x-www-form-urlencoded |
Container for items to be rated and shipped. Used to wrap multiple or single items for rating.
| source required | string Required. The shipper's alpha numeric company name all lower case and together, no special characters |
object Amount of protection declared for shipment | |
| originPostalCode required | string Required. Origin zip code |
| destinationPostalCode required | string Required. Destination zip code |
required | Array of objects Required. items |
| userId | string userId for pricing estimates |
| priceCorrelationId | string priceCorrelationId to correlate the estimated price with the listing |
| commodity | string commodity of the shipment |
| originCountryCode | string country code where the shipment is originating |
| destinationCountryCode | string country code where the shipment is destined |
{- "source": "acmefurniture",
- "insurance": {
- "coverageAmount": {
- "amount": 500,
- "currencyType": "USD"
}
}, - "originPostalCode": "78701",
- "destinationPostalCode": "90210",
- "items": [
- {
- "heightInMeters": 1.8,
- "widthInMeters": 1.5,
- "lengthInMeters": 2.5,
- "weightInGrams": 500,
- "unitCount": 1
}
], - "userId": 30450164,
- "priceCorrelationId": "675712978",
- "commodity": "FurnitureHouseholdGoods",
- "originCountryCode": "US",
- "destinationCountryCode": "US"
}{- "price": 2796.48,
- "nypAmount": 2796.48,
- "priceCorrelationId": "550e8400-e29b-41d4-a716-446655440000",
- "insuranceQuote": {
- "premium": {
- "amount": 500,
- "currencyType": "USD"
}
}, - "coverageAmount": {
- "amount": 500,
- "currencyType": "USD"
}
}Create and manage furniture shipment listings. Listings represent shipment requests that carriers can bid on or accept at a fixed price.
This endpoint allows you to retrieve latitude/longitude values, transit status, and the most recent location or address. If a recent location is not provided, these will be absent from the response.
| listingId required | integer Example: 675712978 Required. The listing ID to retrieve tracking information for |
| Content-Type | string application/x-www-form-urlencoded |
Request body for v2 Listings POST request
| title required | string Required. A title for the listing |
| description | string A description for the listing |
| confidentialDescription | string A confidential description only seen by the driver |
object Pricing information for a listing. Only one of these properties should be used | |
object Amount of protection declared for shipment | |
required | object Required. route |
required | Array of objects Required. items |
| requestedRateTypes | string |
Array of objects Reference numbers associated with the listing. When using Type='Other', you can provide a custom label via referenceNumberLabel which will be combined with the number value as '{referenceNumberLabel} - {number}' (max 60 chars total). | |
| serviceTypes | Array of strings Items Enum: "BlanketWrap" "LtlTransportOnly" "LtlFreightPackaging" A list of requested service types for the shipment |
| gallery | Array of strings |
{- "title": "Furniture Shipment",
- "description": "White glove delivery of sectional sofa with blanket wrap protection",
- "confidentialDescription": "675712978",
- "pricing": {
- "namedPrice": {
- "amount": 500,
- "currencyType": "USD"
}, - "targetPrice": {
- "amount": 500,
- "currencyType": "USD"
}
}, - "insurance": {
- "coverageAmount": {
- "amount": 500,
- "currencyType": "USD"
}
}, - "route": {
- "items": [
- {
- "address": {
- "streetAddress": "123 Main Street",
- "alternateStreetAddress": "Suite 400",
- "majorMunicipality": "Austin",
- "postalCode": "78701",
- "stateProvince": "TX",
- "country": "US",
- "type": "Residential",
- "contactPhoneNumber": "512-555-0123",
- "contactFullName": "John Doe",
- "formattedAddress": "123 Main Street, Austin, TX 78701",
- "timeZone": "America/Chicago"
}, - "timeFrame": {
- "earliestArrival": "2025-01-01T09:00:00Z",
- "latestArrival": "2025-01-01T17:00:00Z",
- "timeFrameType": "Flexible",
- "timeZone": "America/Chicago"
}, - "contact": {
- "name": "John Doe",
- "companyName": "Acme Logistics",
- "phoneNumber": "512-555-0123",
- "email": "contact@example.com"
}
}
]
}, - "items": [
- {
- "commodity": "FurnitureHouseholdGoods",
- "title": "Sectional Sofa - White Glove Delivery - Austin to Dallas",
- "unitCount": 1,
- "widthInMeters": 1.5,
- "lengthInMeters": 2.5,
- "heightInMeters": 1.8,
- "weightInGrams": 500,
- "hazardous": false,
- "stackable": true,
- "handlingUnit": "BlanketWrap"
}
], - "requestedRateTypes": "standard,expedited",
- "referenceNumbers": [
- {
- "type": "PurchaseOrder",
- "number": "PO-12345",
- "referenceNumberLabel": "uShip Protection Plan"
}
], - "serviceTypes": [
- "BlanketWrap"
], - "gallery": [
- "string"
]
}{ }| listingId required | number Example: 12345 Required. ID provided when IHD listing is created |
{- "status": {
- "value": "Booked",
- "label": "Booked",
- "shortLabel": "Booked"
}, - "paymentStatus": {
- "value": "TspPaid",
- "label": "Service Provider Paid",
- "shortLabel": "Service Provider Paid"
}, - "transitStatus": {
- "value": "PickedUp",
- "label": "Picked Up",
- "shortLabel": "Picked Up"
}, - "isAuction": true,
- "auctionTargetPrice": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,797",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "acceptedBidPrice": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,797",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "totalCost": {
- "value": 3553.84,
- "label": "$3,553.84",
- "shortLabel": "$3,554",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "bookingDeposit": {
- "value": 757.36,
- "label": "$757.36",
- "shortLabel": "$758",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "priceDetails": {
- "items": [
- {
- "amount": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,797",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "description": {
- "value": "TotalBid",
- "label": "Quote Amount",
- "shortLabel": "Quote Amount"
}
}, - {
- "amount": {
- "value": 556.5,
- "label": "$556.50",
- "shortLabel": "$557",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "description": {
- "value": "ServiceCharge",
- "label": "Service Charge",
- "shortLabel": "Service Charge"
}
}, - {
- "amount": {
- "value": 200.86,
- "label": "$200.86",
- "shortLabel": "$201",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "description": {
- "value": "Insurance",
- "label": "uShip Protection Plan",
- "shortLabel": "uShip Protection Plan"
}
}
]
}, - "commodity": "New Commercial Goods",
- "parentCommodity": "Household Goods",
- "topLevelCommodity": "Household Goods",
- "expiresOn": "2023-07-21T10:54:35",
- "totalBidsPlaced": 1,
- "isDefaultImage": true,
- "checksum": "c9f0a65b38c61405",
- "createdOn": "2023-07-20T10:54:35-05:00",
- "lastUpdatedOn": "2023-07-20T10:54:35-05:00",
- "bookedOn": "2023-07-20T10:54:38",
- "serviceProvider": {
- "userId": 988326969,
- "displayName": "TSP Company Automated",
- "profileUrl": "/service-provider/988326969-tsp-company-automated",
- "feedback": { },
- "aboutMe": "",
- "dateCreated": "2011-03-23T14:04:07Z",
- "onTimePercentage": 99,
- "damageToClaimRatio": 0.2,
- "pickupInstructionsMaxCharacters": 95,
- "companyLocation": {
- "majorMunicipality": "Austin",
- "stateProvince": "Texas"
}, - "directoryCategories": [
- {
- "value": "HouseholdGoods",
- "label": "Household Goods",
- "shortLabel": "Household Goods"
}, - {
- "value": "HouseholdOfficeMoves",
- "label": "Household & Office Moves",
- "shortLabel": "Household & Office Moves"
}, - {
- "value": "Vehicles",
- "label": "Vehicles",
- "shortLabel": "Vehicles"
}, - {
- "value": "Pets",
- "label": "Pets",
- "shortLabel": "Pets"
}, - {
- "value": "MotorcyclesPowerSports",
- "label": "Motorcycles & Power Sports",
- "shortLabel": "Motorcycles & Power Sports"
}
], - "links": [
- {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/users/988326969/profile",
- "title": "profile"
}
]
}, - "billOfLadingNumber": 2665349,
- "minimumBidAmount": {
- "value": 19.99,
- "label": "$19.99",
- "shortLabel": "$20",
- "currencyType": {
- "value": "USD",
- "label": "US Dollar",
- "shortLabel": "US Dollar"
}
}, - "quoteRequestId": "64b9546806a13f0638323de9",
- "commodityType": {
- "value": "NewCommercialGoods",
- "label": "New Commercial Goods",
- "shortLabel": "New Commercial Goods"
}, - "parentCommodityType": {
- "value": "HouseholdGoods",
- "label": "Household Goods",
- "shortLabel": "Household Goods"
}, - "topLevelCommodityType": {
- "value": "HouseholdGoods",
- "label": "Household Goods",
- "shortLabel": "Household Goods"
}, - "serviceTypes": [ ],
- "referenceNumbers": [
- {
- "type": {
- "value": "Pickup",
- "label": "Pickup",
- "shortLabel": "Pickup"
}, - "number": "PU-12345"
}, - {
- "type": {
- "value": "Delivery",
- "label": "Delivery",
- "shortLabel": "Delivery"
}, - "number": "DEL-67890"
}, - {
- "type": {
- "value": "Invoice",
- "label": "Invoice",
- "shortLabel": "Invoice"
}, - "number": "INV-2024-001"
}, - {
- "type": {
- "value": "PurchaseOrder",
- "label": "Purchase Order",
- "shortLabel": "PO"
}, - "number": "PO-98765"
}, - {
- "type": {
- "value": "SalesOrder",
- "label": "Sales Order",
- "shortLabel": "SO"
}, - "number": "SO-54321"
}, - {
- "type": {
- "value": "Other",
- "label": "Other",
- "shortLabel": "Other"
}, - "number": "ABC123",
- "referenceNumberLabel": "uShip Protection Plan"
}, - {
- "type": {
- "value": "Lot",
- "label": "Lot",
- "shortLabel": "Lot"
}, - "number": "LOT-2024-A1"
}, - {
- "type": {
- "value": "Release",
- "label": "Release",
- "shortLabel": "Release"
}, - "number": "REL-001"
}, - {
- "type": {
- "value": "ThirdPartyTracking",
- "label": "Third Party Tracking",
- "shortLabel": "3P Tracking"
}, - "number": "1Z999AA10123456784"
}, - {
- "type": {
- "value": "PriceCorrelationId",
- "label": "Price Correlation ID",
- "shortLabel": "Price ID"
}, - "number": "PRICE-CORR-12345"
}, - {
- "type": {
- "value": "ThirdPartyOrderNumber",
- "label": "Third Party Order Number",
- "shortLabel": "3P Order"
}, - "number": "EXT-ORD-789"
}, - {
- "type": {
- "value": "VIN",
- "label": "VIN",
- "shortLabel": "VIN"
}, - "number": "1HGBH41JXMN109186"
}, - {
- "type": {
- "value": "SKU",
- "label": "SKU",
- "shortLabel": "SKU"
}, - "number": "SKU-FURN-001"
}, - {
- "type": {
- "value": "ProgressiveNumber",
- "label": "Progressive Number (PRO)",
- "shortLabel": "PRO"
}, - "number": "123456789"
}
], - "listingId": 675712978,
- "title": "Boat motor parts",
- "description": "",
- "route": {
- "distance": {
- "kilometers": 321.868,
- "label": "200 mi.",
- "shortLabel": "200 mi."
}, - "items": [
- {
- "address": {
- "streetAddress": "839 Neans Dr",
- "alternateStreetAddress": "839 Neans Dr",
- "majorMunicipality": "Austin",
- "postalCode": "78758",
- "stateProvince": "TX",
- "stateProvinceLabel": "Texas",
- "country": "US",
- "countryLabel": "United States",
- "latitude": 30.378845,
- "longitude": -97.711093,
- "label": "Austin, TX US",
- "shortLabel": "Austin, TX US",
- "type": {
- "value": "Residence",
- "label": "Residence / Home Business",
- "shortLabel": "Residence / Home Business"
}
}, - "contact": {
- "name": "Matthew Fort",
- "companyName": "Midges Widges",
- "phoneNumber": "3613321804",
- "email": "mfort8487@gmail.com"
}, - "timeFrame": {
- "label": "On 7/24/2023",
- "shortLabel": "7/24",
- "earliestArrival": "2023-07-24T17:00:00Z",
- "latestArrival": "2023-07-24T22:00:00Z",
- "timeFrameType": {
- "value": "on",
- "label": "On",
- "shortLabel": "On"
}, - "timeZone": "America/Chicago"
}, - "accessorials": [
- {
- "value": "PickupLiftgateRequired",
- "label": "Liftgate service at pickup",
- "shortLabel": "Liftgate service at pickup"
}
]
}, - {
- "address": {
- "streetAddress": "1000 Champions D",
- "majorMunicipality": "Rockport",
- "postalCode": "78381",
- "stateProvince": "TX",
- "stateProvinceLabel": "Texas",
- "country": "US",
- "countryLabel": "United States",
- "latitude": 28.007465,
- "longitude": -97.060724,
- "label": "Rockport, TX US",
- "shortLabel": "Rockport, TX US",
- "type": {
- "value": "BusinessWithLoadingDockOrForklift",
- "label": "Business (with loading dock or forklift)",
- "shortLabel": "Business (with loading dock or forklift)"
}
}, - "contact": {
- "name": "Chase Bechtol",
- "companyName": "Chases Schmases",
- "phoneNumber": "3615105371",
- "email": "cb@acisd.org"
}, - "timeFrame": {
- "label": "Between 7/24/2023 - 7/24/2023",
- "shortLabel": "7/24 - 7/24",
- "earliestArrival": "2023-07-24T17:00:00Z",
- "latestArrival": "2023-07-24T22:00:00Z",
- "timeFrameType": {
- "value": "between",
- "label": "Between",
- "shortLabel": "Between"
}, - "timeZone": "America/Chicago"
}, - "accessorials": [ ]
}
]
}, - "lister": {
- "userId": 30450164,
- "displayName": "Matthew F.",
- "profileUrl": "/profile/30450164",
- "feedback": { },
- "dateCreated": "2022-12-12T15:35:38Z",
- "companyLocation": { },
- "links": [
- {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/users/30450164/profile",
- "title": "profile"
}
]
}, - "items": [
- {
- "title": "1 Sectional Sofa, 250 lbs. total, 96\" x 40\" x 36\"",
- "commodity": {
- "value": "NewCommercialGoods",
- "label": "New Commercial Goods",
- "shortLabel": "New Commercial Goods"
}, - "attributes": {
- "description": {
- "title": "Description",
- "value": "3-piece sectional sofa with chaise",
- "label": "3-piece sectional sofa with chaise",
- "shortLabel": "3-piece sectional sofa"
}, - "heightInMeters": {
- "title": "Height",
- "value": 1.422,
- "label": "4 ft 8 in.",
- "shortLabel": "4 ft 8 in."
}, - "lengthInMeters": {
- "title": "Length",
- "value": 1.727,
- "label": "5 ft 8 in.",
- "shortLabel": "5 ft 8 in."
}, - "widthInMeters": {
- "title": "Width",
- "value": 1.219,
- "label": "4 ft",
- "shortLabel": "4 ft"
}, - "weightInGrams": {
- "title": "Total item weight",
- "value": 385550,
- "label": "850 lbs",
- "shortLabel": "850 lbs"
}, - "unitWeightInGrams": {
- "title": "Weight",
- "value": 385550,
- "label": "850 lbs",
- "shortLabel": "850 lbs"
}, - "unitCount": {
- "title": "Number of units",
- "value": 1,
- "label": "1",
- "shortLabel": "1"
}, - "serviceType": {
- "title": "Service Type",
- "value": "WhiteGlove",
- "label": "White Glove",
- "shortLabel": "White Glove"
}, - "packaging": {
- "title": "Packaging",
- "value": "BlanketWrap",
- "label": "Blanket Wrap",
- "shortLabel": "Blanket Wrap"
}, - "isHazardous": {
- "title": "Hazardous",
- "value": false,
- "label": "No",
- "shortLabel": "No"
}, - "isStackable": {
- "title": "Stackable",
- "value": false,
- "label": "No",
- "shortLabel": "No"
}
}
}
], - "accessorials": [ ],
- "totalWeightInGrams": {
- "value": 385550,
- "label": "850 lbs",
- "shortLabel": "850 lbs"
}, - "links": [
- {
- "rel": "Update",
- "verb": "PUT",
- "href": "/v2/listings/675712978/pickup",
- "title": "pickup"
}, - {
- "rel": "Update",
- "verb": "PUT",
- "href": "/v2/listings/675712978/delivery",
- "title": "delivery"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978/bids/2665349",
- "title": "acceptedBid"
}, - {
- "rel": "List",
- "verb": "GET",
- "href": "/v2/listings/675712978/bids",
- "title": "bids"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978/contacts",
- "title": "contacts"
}, - {
- "rel": "List",
- "verb": "GET",
- "href": "/v2/listings/675712978/conversations",
- "title": "listingconversations"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978/paymentCodes",
- "title": "paymentCodes"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978/transitstatuses",
- "title": "transitstatus"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978",
- "title": "dispute"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978",
- "title": "submitProtectionPlanCase"
}, - {
- "rel": "Create",
- "verb": "POST",
- "href": "/v2/listings/675712978?marketId=0",
- "title": "listSimilarShipment"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978",
- "title": "viewBol"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/listings/675712978",
- "title": "viewListing"
}, - {
- "rel": "Item",
- "verb": "GET",
- "href": "/v2/trackingupdates/2665349",
- "title": "ltlTracking"
}
]
}| id required | integer Example: 1 Required. ID of the listing to update |
Listing update model containing the fields to update
| checksum | string Checksum for concurrency control |
| title | string Listing title |
| description | string Listing description |
object (RouteModel) Container for route destinations and other route information | |
| isAuction | boolean Whether this listing is an auction |
| isDutchAuction | boolean Whether this listing is a Dutch auction |
object (PriceModel) The details of a price and recommended formatting | |
object (PriceModel) The details of a price and recommended formatting | |
| items | Array of objects Collection of listing items |
Array of objects (EnumModel) Service types for the listing | |
Array of objects (ReferenceNumber) Reference numbers associated with the listing | |
object Additional attributes for the listing | |
| isItineraryMandatory | boolean Whether itinerary is mandatory for this listing |
| importSource | string The URI of a listing-like resource from which a listing might be created or updated |
{- "checksum": "a1b2c3d4e5f6",
- "title": "Sectional Sofa - White Glove Delivery - Austin to Dallas",
- "description": "White glove delivery of sectional sofa with blanket wrap protection",
- "route": {
- "distance": {
- "kilometers": 100,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}, - "items": [
- {
- "address": {
- "streetAddress": "123 Main Street",
- "alternateStreetAddress": "Suite 400",
- "majorMunicipality": "Austin",
- "postalCode": "78701",
- "stateProvince": "TX",
- "stateProvinceLabel": "TX",
- "country": "US",
- "countryLabel": "US",
- "latitude": 30.2672,
- "longitude": -97.7431,
- "label": "$2,796.48",
- "shortLabel": "$2,796",
- "type": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
}, - "contact": {
- "name": "John Doe",
- "companyName": "Acme Logistics",
- "phoneNumber": "512-555-0123",
- "altPhoneNumber": "512-555-9876",
- "email": "contact@example.com",
- "firstName": "John",
- "lastName": "Doe"
}, - "timeFrame": {
- "label": "$2,796.48",
- "shortLabel": "$2,796",
- "earliestArrival": "2025-01-15T09:00:00Z",
- "latestArrival": "2025-01-15T17:00:00Z",
- "localEarliestArrival": "2025-01-01T12:00:00Z",
- "localLatestArrival": "2025-01-01T12:00:00Z",
- "timeFrameType": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}, - "timeZone": "America/Chicago"
}, - "terminal": {
- "phoneNumber": "512-555-0123",
- "city": "Austin",
- "state": "TX",
- "postalCode": "78701"
}, - "attributes": {
- "property1": {
- "title": "Sectional Sofa - White Glove Delivery - Austin to Dallas",
- "value": { },
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}, - "property2": {
- "title": "Sectional Sofa - White Glove Delivery - Austin to Dallas",
- "value": { },
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
}, - "accessorials": [
- {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
]
}
]
}, - "isAuction": false,
- "isDutchAuction": false,
- "namedPrice": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796",
- "currencyType": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
}, - "offerPrice": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796",
- "currencyType": {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
}, - "items": [
- { }
], - "serviceTypes": [
- {
- "value": 2796.48,
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
], - "referenceNumbers": [
- {
- "number": "PO-12345",
- "type": "PurchaseOrder",
- "referenceNumberLabel": "uShip Protection Plan"
}
], - "attributes": {
- "property1": {
- "title": "Sectional Sofa - White Glove Delivery - Austin to Dallas",
- "value": { },
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}, - "property2": {
- "title": "Sectional Sofa - White Glove Delivery - Austin to Dallas",
- "value": { },
- "label": "$2,796.48",
- "shortLabel": "$2,796"
}
}, - "isItineraryMandatory": false,
}Retrieve Bill of Lading documents for booked shipments. The BOL serves as the official shipping contract between shipper and carrier.
| id required | string Example: 675712978 Required. The listing ID for which to retrieve the bill of lading |
| Authorization required | string Example: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9... Required. Required Authorization header containing access token |
{- "billOfLadingNumber": 100,
}