Created
May 21, 2014 14:58
-
-
Save twmills/005b3c4ab9c85330a801 to your computer and use it in GitHub Desktop.
Example response of ShippingEasy API call: find all orders.
This file contains 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
{"orders": [ | |
{ | |
"id": 73150, | |
"external_order_identifier": "45640", | |
"ordered_at": "2014-03-05T08:00:00Z", | |
"order_status": "ready_for_shipment", | |
"total_including_tax": "94.90", | |
"total_excluding_tax": "0.00", | |
"discount_amount": "0.00", | |
"coupon_discount": "0.00", | |
"subtotal_including_tax": "89.95", | |
"subtotal_excluding_tax": "0.00", | |
"subtotal_tax": "0.00", | |
"total_tax": "0.00", | |
"base_shipping_cost": "4.95", | |
"shipping_cost_including_tax": "4.95", | |
"shipping_cost_excluding_tax": "0.00", | |
"shipping_cost_tax": "0.00", | |
"base_handling_cost": "0.00", | |
"handling_cost_excluding_tax": "0.00", | |
"handling_cost_including_tax": "0.00", | |
"handling_cost_tax": "0.00", | |
"base_wrapping_cost": "0.00", | |
"wrapping_cost_excluding_tax": "0.00", | |
"wrapping_cost_including_tax": "0.00", | |
"wrapping_cost_tax": "0.00", | |
"billing_company": "", | |
"billing_first_name": "Tom", | |
"billing_last_name": "Smith", | |
"billing_address": "600 California St", | |
"billing_address2": "", | |
"billing_city": "San Francisco", | |
"billing_state": "California", | |
"billing_country": "United States", | |
"billing_postal_code": "94108", | |
"billing_phone_number": null, | |
"billing_email": "melissa@shippingeasy.com", | |
"recipients": [ | |
{ | |
"company": "", | |
"first_name": "Tom", | |
"last_name": "Smith", | |
"address": "600 California St", | |
"address2": "", | |
"address3": null, | |
"city": "San Francisco", | |
"residential": false, | |
"state": "CA", | |
"province": null, | |
"country": "United States", | |
"postal_code": "94108", | |
"postal_code_plus_4": "2704", | |
"phone_number": "3453332222", | |
"email": "melissa@shippingeasy.com", | |
"base_cost": "0.00", | |
"cost_excluding_tax": "0.00", | |
"cost_including_tax": "0.00", | |
"cost_tax": "0.00", | |
"base_handling_cost": "0.00", | |
"handling_cost_excluding_tax": "0.00", | |
"handling_cost_including_tax": "0.00", | |
"handling_cost_tax": "0.00", | |
"shipping_zone_id": null, | |
"shipping_zone_name": null, | |
"items_total": 0, | |
"shipping_method": null, | |
"items_shipped": 0, | |
"ext_shipping_detail_id": 44370, | |
"line_items": [ | |
{ | |
"item_name": "Crumpler Bag", | |
"sku": "90907", | |
"bin_picking_number": null, | |
"weight_in_ounces": "46.08", | |
"quantity": 1, | |
"total_excluding_tax": "0.00", | |
"price_excluding_tax": "89.95", | |
"unit_price": "89.95", | |
"ext_line_item_id": "90908", | |
"ext_product_id": "1018", | |
"product_options": null | |
}, | |
{ | |
"item_name": "Downloadable - Office for PC", | |
"sku": "90909", | |
"bin_picking_number": null, | |
"weight_in_ounces": "36.8", | |
"quantity": 1, | |
"total_excluding_tax": "0.00", | |
"price_excluding_tax": "0.00", | |
"unit_price": "0.00", | |
"ext_line_item_id": "90910", | |
"ext_product_id": "1037", | |
"product_options": null | |
} | |
] | |
} | |
], | |
"store_api_key": null | |
} | |
], "meta": { | |
"current_page": 1, | |
"next_page": 2, | |
"prev_page": null, | |
"total_pages": 17, | |
"total_count": 17, | |
"last_updated_at": "2014-02-21T14:54:07Z", | |
"status": ["ready_for_shipment", "shipped"] | |
}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment