GET https://api.storenvy.com/v1/orders/:id
Get a specific Order by ID.
Example response:
{ "data": { "id": 1, "subtotal": 5000, "shipping": 450, "tax": 0, "discounts": 0, "confirmed_at": "2013-10-31T19:31:54-05:00", "fulfilled_at": null, "updated_at": "2013-10-31T19:31:54-05:00", "paid_at": "2013-10-31T19:31:54-05:00", "payment_processor": "stripe", "status": "open", "email": "[email protected]", "user_note": null, "price": "4.50", "address": { "name": "Happy Customer", "address_1": "123 Elm St", "address_2": "", "city": "San Francisco", "postal": "94102", "state": "California", "state_abbrev": "CA", "country": "US" }, "items": [ { "item": { "id": 30, "order_id": 44, "product_id": 30, "product_name": "Product Name", "variant_id": 30, "variant_name": "Default", "sku": null, "quantity": 1, "fulfilled_at": null, "discount": 0, "list_price": 5000, "tax": 0, "fulfillment_id": null, "price_in_cents": 5000 } } ], "fulfillments": [ ] } }