Create a Shipment with Sales Order Items
Example
POST /v-beta/shipments
1234567891011121314151617181920212223242526272829303132333435363738394041
POST /v-beta/shipments HTTP/1.1Host: api.shipengine.comAPI-Key: __YOUR_API_KEY_HERE__Content-Type: application/json{"shipments": [{"validate_address": "validate_and_clean","carrier_id": "se-2565","service_code": "usps_priority_mail","ship_to": {"name": "Amanda Miller","phone": "555-555-5555","address_line1": "525 S Winchester Blvd","city_locality": "San Jose","state_province": "CA","postal_code": "95128","country_code": "US","address_residential_indicator": "yes"},"warehouse_id": "se-1951","packages": [{"package_code": "package","weight": {"value": 1.0,"unit": "ounce"}}],"items": [{"sales_order_id": "0351523b-1955-5259-a5a5-e63b7336e738","sales_order_item_id": "eeda0203-1380-5cf3-a6fd-8b405d0e5bfb","quantity": 1}]}]}
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
{"has_errors": false,"shipments": [{"sales_order_ids": ["0351523b-1955-5259-a5a5-e63b7336e738"],"items": [{"sales_order_id": "0351523b-1955-5259-a5a5-e63b7336e738","sales_order_item_id": "eeda0203-1380-5cf3-a6fd-8b405d0e5bfb","quantity": 1,"name": "things","sku": "things-sku","created_at": "2018-01-30T20:43:04.7751179Z","modified_at": "2018-01-30T20:43:04.7751179Z"}],"errors": [],"address_validation": {"status": "verified","original_address": {"name": "Amanda Miller","phone": "555-555-5555","address_line1": "525 S Winchester Blvd","city_locality": "San Jose","state_province": "CA","postal_code": "95128","country_code": "US","address_residential_indicator": "yes"},"matched_address": {"name": "AMANDA MILLER","phone": "555-555-5555","address_line1": "525 S WINCHESTER BLVD","city_locality": "SAN JOSE","state_province": "CA","postal_code": "95128","country_code": "US","address_residential_indicator": "yes"},"messages": []},"shipment_id": "se-1150920","carrier_id": "se-2565","service_code": "usps_priority_mail","external_shipment_id": null,"ship_date": "2019-07-25T05:00:00.000Z","created_at": "2019-07-25T15:24:46.657Z","modified_at": "2019-07-25T15:24:46.657Z","shipment_status": "pending","ship_to": {"name": "Amanda Miller","phone": "555-555-5555","address_line1": "525 S Winchester Blvd","city_locality": "San Jose","state_province": "CA","postal_code": "95128","country_code": "US","address_residential_indicator": "yes"},"ship_from": {"company_name": "Example Corp.","name": "John Doe","phone": "111-111-1111","address_line1": "4009 Marathon Blvd","address_line2": "Suite 300","city_locality": "Austin","state_province": "TX","postal_code": "78756","country_code": "US","address_residential_indicator": "no"},"return_to": {"company_name": "Example Corp.","name": "John Doe","phone": "111-111-1111","address_line1": "4009 Marathon Blvd","address_line2": "Suite 300","city_locality": "Austin","state_province": "TX","postal_code": "78756","country_code": "US","address_residential_indicator": "no"},"packages": [{"package_code": "package","weight": {"value": 1,"unit": "ounce"},"dimensions": {"unit": "inch","length": 0,"width": 0,"height": 0},"insured_value": {"currency": "usd","amount": 0},"label_messages": {"reference1": null,"reference2": null,"reference3": null}}],"total_weight": {"value": 1,"unit": "ounce"}}]}