Last active
January 3, 2016 12:29
-
-
Save twmills/8463019 to your computer and use it in GitHub Desktop.
ShippingEasy Example API Call (subject to change)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -XPOST https://app.shippingeasy.com/api/orders?api_key=fc2d75c0212154d4ff394bfdc436b45a&api_timestamp=1390314539&api_signature=662f775289a34b3852fa28230f396ae73433c793c86b120be6bf7252816d83a1 -d '{ | |
| "order" : { | |
| "order_identifier":"ABC-1004", | |
| "ordered_at":"2014-01-16 14:37:56 -0600", | |
| "order_status":"awaiting_shipment", | |
| "subtotal_including_tax":10.0, | |
| "total_including_tax":10.0, | |
| "total_excluding_tax":10.0, | |
| "discount_amount":0, | |
| "shipping_cost_including_tax":1.5, | |
| "notes":"Please send promptly.", | |
| "recipients":[ | |
| { | |
| "first_name":"Colin", | |
| "last_name":"Homenick", | |
| "company":"Wintheiser-Hickle", | |
| "email":"[email protected]", | |
| "phone_number":"637-481-6505", | |
| "residential":true, | |
| "address":"21937 Adelbert Springs", | |
| "address2":"", | |
| "province":"", | |
| "state":"CT", | |
| "city":"Terryfurt", | |
| "postal_code":"93322", | |
| "postal_code_plus_4":"1234", | |
| "country":"Andorra", | |
| "shipping_method":"Ground", | |
| "line_items":[ | |
| { | |
| "item_name":"Pencil Holder", | |
| "sku":"9876543", | |
| "bin_picking_number":"7", | |
| "unit_price":"1.30", | |
| "weight_in_ounces":1, | |
| "quantity":1 | |
| }, | |
| { | |
| "item_name":"Pencil Holder", | |
| "sku":"9876543", | |
| "bin_picking_number":"7", | |
| "unit_price":"1.30", | |
| "weight_in_ounces":1, | |
| "quantity":1 | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment