# Get Shipment Get a shipment Endpoint: GET /shipments/{ship_code} Version: 4 Security: bearerAuth ## Path parameters: - `ship_code` (string, required) The ship_code of a shipment. ## Response 200 fields (application/json): - `success` (boolean) - `label` (string) Base 64 encoded label. Example: "base64_label" - `tracking_code` (string) Example: "9400111969000940000011" - `message` (string) Example: "Shipment successfully completed" - `shipment` (object) - `shipment.ship_code` (string) Example: "2019JHSJDHSJ" - `shipment.name` (string) Example: "Pramod Thomson" - `shipment.address1` (string) Example: "30 Clearview Dr" - `shipment.address2` (string) Example: "Lot 2" - `shipment.city` (string) Example: "Rock Springs" - `shipment.province_code` (string) Example: "WY" - `shipment.postal_code` (string) Example: "82901" - `shipment.country_code` (string) Example: "US" - `shipment.weight_unit` (string) Enum: "lbs", "kg", "g", "oz" - `shipment.weight` (number) Example: 0.6 - `shipment.length` (number) Example: 9 - `shipment.width` (number) Example: 12 - `shipment.height` (number) Example: 1 - `shipment.size_unit` (string) Enum: "cm", "in" - `shipment.items` (array) - `shipment.items.description` (string) Example: "Two pair of socks" - `shipment.items.sku` (string,null) The SKU/ASIN of the item. Required for FBA shipments. Example: "SKU123" - `shipment.items.quantity` (integer) Example: 2 - `shipment.items.value` (number) Example: 10 - `shipment.items.currency` (string) Enum: "CAD", "USD", "EUR", "AUD", "GBP" - `shipment.items.country_of_origin` (string) Required if the shipment is being sent to US Example: "CN" - `shipment.items.hs_code` (string) Required if the shipment country_of_origin is CN/HK. Example: "123456" - `shipment.items.manufacturer_name` (string,null) The name of the item's manufacturer Example: "Acme Clothing Inc." - `shipment.items.manufacturer_address1` (string,null) The address of the item's manufacturer Example: "123 Manufacturing Blvd" - `shipment.items.manufacturer_city` (string,null) The city of the item's manufacturer Example: "Toronto" - `shipment.items.manufacturer_province_code` (string,null) The province/state code of the item's manufacturer Example: "ON" - `shipment.items.manufacturer_postal_code` (string,null) The postal/zip code of the item's manufacturer Example: "M5V 2H1" - `shipment.items.manufacturer_country_code` (string,null) The country code of the item's manufacturer Example: "CA" - `shipment.package_type` (string) Enum: "Parcel", "Legal Flat Rate Envelope", "Flat Rate PAdded Envelope", "Small Flat Rate Box", "Medium Flat Rate Box 1", "Medium Flat Rate Box 2", "Large Flat Rate Box", "Regional Rate Box A1", "Regional Rate Box A2", "Regional Rate Box B1", "Regional Rate Box B2", "Letter", "Large Envelope Or Flat", "Thick Envelope" - `shipment.postage_type` (string) Enum: "USPS First Class Mail", "USPS Priority Mail", "USPS Priority Mail Express", "USPS Parcel Select Ground", "USPS Media Mail", "USPS Library Mail", "USPS Express Mail International", "USPS Priority Mail International", "USPS First Class Mail International", "FedEx Ground", "UPS Standard", "PostNL International Packet", "PostNL International Packet Tracked", "APC Priority Worldwide", "APC Priority Worldwide Tracked", "APC Priority Worldwide Expedited", "APC Priority Worldwide Expedited(DDP)", "Stallion Economy USA", "Stallion Economy CA", "US Economy", "Intelcom Standard", "Ecom Next Day", "Canada Post Expedited", "Fleet Optics Express", "ICS Express", "UPS Express Saver" - `shipment.region` (string) Enum: "Ontario", "British Columbia", "Quebec" - `shipment.rate` (integer) Example: 9 - `shipment.tax` (integer) - `shipment.total_paid` (integer) - `shipment.insured` (boolean) Example: true ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated." ## Response 404 fields (application/json): - `success` (boolean) - `errors` (array) Example: ["No shipment found"] ## Response 500 fields (application/json): - `success` (boolean) - `errors` (array) Example: ["An unknown error occured"]