curl https://api.shipengine.com/v-beta/sales_orders \
-X POST \
-H 'content-type: application/json' \
-H "api-key: ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw" \
-d '
{
"order_date": "2019-04-29T17:51:49.604Z$",
"customer": {
"name":"Mickey Mouse",
"phone":"512-555-5555",
"email":"[email protected]"
},
"bill_to": {
"email": "[email protected]",
"address": {
"name": "Mickey and Minnie Mouse",
"phone": "714-781-4565",
"company_name": "The Walt Disney Company",
"address_line1": "500 South Buena Vista Street",
"city_locality": "Burbank",
"state_province": "CA",
"postal_code": "91521",
"country_code": "US"
}
},
"ship_to": {
"name": "Mickey and Minnie Mouse",
"phone": "714-781-4565",
"company_name": "The Walt Disney Company",
"address_line1": "500 South Buena Vista Street",
"city_locality": "Burbank",
"state_province": "CA",
"postal_code": "91521",
"country_code": "US"
},
"payment_details": {
"subtotal": {
"currency": "usd",
"amount": 200
},
"estimated_shipping": {
"currency": "usd",
"amount": 10
},
"estimated_tax": {
"currency": "usd",
"amount": 5
},
"grand_total": {
"currency": "usd",
"amount": 215
}
},
"sales_order_items": [
{
"sales_order_item_id": "02202633-d038-5cfc-bdc2-777968435771",
"line_item_details":
{
"name": "ball of string A",
"sku": "ball of string A"
},
"price_summary":
{
"unit_price": {
"currency": "usd",
"amount": 200
}
},
"ship_to": {
"name": "Mickey and Minnie Mouse",
"phone": "714-781-4565",
"company_name": "The Walt Disney Company",
"address_line1": "500 South Buena Vista Street",
"city_locality": "Burbank",
"state_province": "CA",
"postal_code": "91521",
"country_code": "US"
},
"quantity": 4,
"is_gift": false
}
]
}'