The REST Admin API is a legacy API as of October 1, 2024. Starting April 1, 2025, all new public apps must be built exclusively with the GraphQL Admin API. For details and migration steps, visit our migration guide.
Draft Order
draft_orders access scope.Merchants can use draft orders to create orders on behalf of their customers. Draft orders are useful for merchants that need to do the following tasks:
- Create new orders for sales made by phone, in person, by chat, or elsewhere. When a merchant accepts payment for a draft order, an order is created.
- Send invoices to customers to pay with a secure checkout link.
- Use custom items to represent additional costs or products that aren't displayed in a shop's inventory.
- Re-create orders manually from active sales channels.
- Sell products at discount or wholesale rates.
- Take pre-orders.
The Draft Order resource doesn't expose reserve inventory information.
The Draft Order resource doesn't expose reserve inventory information.
Caution: Only use this data if it is necessary for the intended app functionality. Shopify retains the ability to restrict access to API Access scopes for apps not requiring legitimate use of the associated data.
Endpoints
- post/admin/api/latest/draft_
orders. json Create a new DraftOrder - post/admin/api/latest/draft_
orders/{draft_ order_ id}/send_ invoice. json Send an invoice - get/admin/api/latest/draft_
orders. json Retrieves a list of draft orders - get/admin/api/latest/draft_
orders/{draft_ order_ id}. json Receive a single DraftOrder - get/admin/api/latest/draft_
orders/count. json Receive a count of all DraftOrders - put/admin/api/latest/draft_
orders/{draft_ order_ id}. json Modify an existing DraftOrder - put/admin/api/latest/draft_
orders/{draft_ order_ id}/complete. json Complete a draft order - del/admin/api/latest/draft_
orders/{draft_ order_ id}. json Remove an existing DraftOrder
The DraftOrder resource
Properties
The ID of the draft order.
The ID of the order that's created and associated with the draft order after the draft order is completed.
Name of the draft order.
The customer resource, which contains information about the customer. Learn more about loading
and removing customers. For more information about the customer resource, see
the Customer documentation.
The address to ship the order to. The shipping_address is optional and will not be available on orders that don't require shipping. The shipping_address resource has the following properties:
Show shipping_address properties
- address1: The street address of the shipping address.
- address2: An optional additional field for the street address of the shipping address.
- city: The city of the shipping address.
- company: The company of the person associated with the shipping address.
- country: The name of the country of the shipping address.
- country_code: The two-letter code for the country of the shipping address.
- first_name: The first name of the person associated with the payment method.
- last_name: The last name of the person associated with the payment method.
- latitude: The latitude of the shipping address.
- longitude: The longitude of the shipping address.
- name: The full name of the person associated with the payment method.
- phone: The phone number at the shipping address.
- province: The name of the state or province of the shipping address.
- province_code: The alphanumeric abbreviation of the state or province of the shipping address.
- zip: The zip or postal code of the shipping address.
The mailing address associated with the payment method. This address is an optional field that won't be available on orders that do not require a payment method. The billing_address resource has the following properties:
Show billing_address properties
- address1: The street address of the billing address.
- address2: An optional additional field for the street address of the billing address.
- city: The city of the billing address.
- company: The company of the person associated with the billing address.
- country: The name of the country of the billing address.
- country_code: The two-letter code (ISO 3166-1 alpha-2 two-letter country code) for the country of the billing address.
- first_name: The first name of the person associated with the payment method.
- last_name: The last name of the person associated with the payment method.
- latitude: The latitude of the billing address.
- longitude: The longitude of the billing address.
- name: The full name of the person associated with the payment method.
- phone: The phone number at the billing address.
- province: The name of the billing address region, such as province, state, or prefecture.
- province_code: The alphanumeric abbreviation of the region for the billing address.
- zip: The postal code of the billing address, such as zip, postcode, or Eircode.
The text of an optional note that a merchant can attach to the draft order.
The extra information that's added to the order. The information appears in theAdditional details section of an order details page. Each array entry must contain a hash with name and value keys.
The customer's email address.
The three letter code (ISO 4217 format) for the currency used for the payment.
The date and time (ISO 8601 format) when the invoice was emailed to the customer.
The URL for the invoice.
The DraftOrder resource
Anchor to POST request, Create a new DraftOrderpostCreate a new Draft Order
Creates a draft order.
Using the DraftOrder resource you can create orders in draft state using product variant line items,
or custom line items. To create a product variant draft order, provide the variant_id, quantity and discount properties. To create a custom line item, provide the title, price, taxable,
and quantity properties.
If you are using this endpoint with a Partner development store or a trial store, then you can only create five draft orders per minute.
If you are using this endpoint with a Partner development store or a trial store, then you can only create five draft orders per minute.
Polling
When you create and update draft orders some calculations are done asynchronously, such as calculating shipping and taxes. There might be times when a draft order is created but these calculations haven't completed. In these cases, you need to poll the draft order until the calculations are finished. When a draft order requires polling, a202 accepted response code is returned along with location and retry-after response headers. The location header refers to the URL to be polled, and retry-after denotes the interval (in seconds) at which polling requests should be sent. When the draft order is ready, a 200 OK response code will be returned.
About custom shipping lines
You can use the DraftOrder resource to send orders with custom shipping lines. A custom shipping line includes atitle and price with handle
set to Nil. A shipping line with a carrier provided shipping rate
(currently set via the Shopify admin) includes the shipping rate handle.
Applying discounts
A draft order and its line items can have one discount each. Calculations for discounts are based on the setting
of the value_type property, which can be set to either fixed_amount or percentage.
For example, you can apply a fixed amount discount to a draft order to reduce the price by the specified value property.
When you use a percentage discount, the discount amount property is the price multiplied by the value property.
For line item discounts, the value property is applied per individual unit of the item, based on the line item's quantity.
Calculating line item discount amounts
For fixed_amount discounts, the total amount corresponds to the line item quantity
times the value of the discount.
For percentage discounts, the total amount corresponds to the following:
amount = floor(price * quantity * value) / 100, where floor() is the usual round down function.
For non-fractional currencies, this formula needs to use round() instead of floor(), and the division by 100 takes place inside the rounding, resulting in a non-fractional value.
Otherwise, an error is returned.
amount = round(price * quantity * value / 100)
Fixed amount discount
For a $19.99 line item with quantity of 2 and with $5 dollars off, discount amount corresponds to $10 ($5 * 2):
applied_discount: { "value_type": "fixed_amount", "value": 5, "amount": 10 }
Percentage discount
For a $19.99 line item with quantity of 2 and with 15% off, discount amount corresponds to $5.99 (floor ($19.99 * 2 * 15) / 100):
applied_discount: { "value_type": "percentage", "value": 15, "amount": 5.99 }
Loading and removing customers
You can load a customer to a draft order by sending the customer_id as part of the draft order resource.
We recommend removing a customer from a draft order by making a POST request with the Customer resource set to null,
without specifying an email, shipping address, or billing address.
A customer can also be removed by setting customer, email, shipping_address, and billing_address to null.
Used to load the customer. When a customer is loaded, the customer’s email address is also associated.
An optional boolean that you can send as part of a draft order resource to load customer shipping information. Valid values: true or false.
Create a draft order with a discount
Create a draft order with a discount
Create a draft order with a percent discount on a line item
Create a draft order with a percent discount on a line item
Create custom draft order
Create custom draft order
Create draft order with custom billing address
Create draft order with custom billing address
Create draft order with custom shipping address
Create draft order with custom shipping address
Create a draft order with a discounted line item
Create a draft order with a discounted line item
Create a simple draft order with only a product variant ID.
Create a simple draft order with only a product variant ID.
/admin/api/2026-07/draft_ orders. json
Response
examples
<span id="create-a-draft-order-with-a-discount">Create a draft order with a discount</span>
curl -d '{"draft_order":{"line_items":[{"title":"Custom Tee","price":"20.00","quantity":2}],"applied_discount":{"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.00","title":"Custom"},"customer":{"id":207119551},"use_customer_default_address":true}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":2}]; $draft_order->applied_discount = {"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.00","title":"Custom"}; $draft_order->customer = {"id":207119551}; $draft_order->use_customer_default_address = true; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":2}]; $draft_order->applied_discount = {"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.00","title":"Custom"}; $draft_order->customer = {"id":207119551}; $draft_order->use_customer_default_address = true; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":2}]; $draft_order->applied_discount = {"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.00","title":"Custom"}; $draft_order->customer = {"id":207119551}; $draft_order->use_customer_default_address = true; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920533,"note":null,"email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:49-04:00","updated_at":"2026-07-02T11:07:49-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630439,"variant_id":null,"product_id":null,"title":"Custom Tee","variant_title":null,"sku":null,"vendor":null,"quantity":2,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"applied_discount":null,"name":"Custom Tee","properties":[],"custom":true,"price":"20.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630439"}],"api_client_id":755357713,"shipping_address":{"first_name":null,"address1":"Chestnut Street 92","phone":"555-625-1199","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":null,"address2":"","company":null,"latitude":null,"longitude":null,"name":"","country_code":"US","province_code":"KY"},"billing_address":{"first_name":null,"address1":"Chestnut Street 92","phone":"555-625-1199","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":null,"address2":"","company":null,"latitude":null,"longitude":null,"name":"","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/af822475caf7bacac67cd6d06683a852","created_on_api_version_handle":"unstable","applied_discount":{"description":"Custom discount","value":"10.0","title":"Custom","amount":"10.00","value_type":"fixed_amount"},"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"tags":"","note_attributes":[],"total_price":"31.80","subtotal_price":"30.00","total_tax":"1.80","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"40.00","currency_code":"USD"},"presentment_money":{"amount":"40.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"31.80","currency_code":"USD"},"presentment_money":{"amount":"31.80","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"30.00","currency_code":"USD"},"presentment_money":{"amount":"30.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"1.80","currency_code":"USD"},"presentment_money":{"amount":"1.80","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"31.80","currency_code":"USD"},"presentment_money":{"amount":"31.80","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920533","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}}<span id="create-a-percent-discount-on-a-line-item">Create a draft order with a percent discount on a line item</span>
curl -d '{"draft_order":{"line_items":[{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"2.0","title":"Custom"}}]}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"2.0","title":"Custom"}}]; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"2.0","title":"Custom"}}]; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"2.0","title":"Custom"}}]; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920532,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:45-04:00","updated_at":"2026-07-02T11:07:45-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630438,"variant_id":null,"product_id":null,"title":"Custom Tee","variant_title":null,"sku":null,"vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.05,"title":"GST","price":"0.90"},{"rate":0.08,"title":"Tax","price":"1.44"}],"applied_discount":{"description":"Custom discount","value":"10.0","title":"Custom","amount":"2.00","value_type":"percentage"},"name":"Custom Tee","properties":[],"custom":true,"price":"20.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630438"}],"api_client_id":755357713,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/ae49589f399a3c6fcf5245381711d23f","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.05,"title":"GST","price":"0.90"},{"rate":0.08,"title":"Tax","price":"1.44"}],"tags":"","note_attributes":[],"total_price":"20.34","subtotal_price":"18.00","total_tax":"2.34","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"20.00","currency_code":"USD"},"presentment_money":{"amount":"20.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"20.34","currency_code":"USD"},"presentment_money":{"amount":"20.34","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"18.00","currency_code":"USD"},"presentment_money":{"amount":"18.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"2.34","currency_code":"USD"},"presentment_money":{"amount":"2.34","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"2.00","currency_code":"USD"},"presentment_money":{"amount":"2.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"20.34","currency_code":"USD"},"presentment_money":{"amount":"20.34","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920532"}}<span id="create-custom-draft-order">Create custom draft order</span>
curl -d '{"draft_order":{"line_items":[{"title":"Custom Tee","price":"20.00","quantity":2}],"customer":{"id":207119551},"use_customer_default_address":true}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":2}]; $draft_order->customer = {"id":207119551}; $draft_order->use_customer_default_address = true; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":2}]; $draft_order->customer = {"id":207119551}; $draft_order->use_customer_default_address = true; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":2}]; $draft_order->customer = {"id":207119551}; $draft_order->use_customer_default_address = true; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920536,"note":null,"email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:57-04:00","updated_at":"2026-07-02T11:07:57-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630443,"variant_id":null,"product_id":null,"title":"Custom Tee","variant_title":null,"sku":null,"vendor":null,"quantity":2,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"2.40"}],"applied_discount":null,"name":"Custom Tee","properties":[],"custom":true,"price":"20.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630443"}],"api_client_id":755357713,"shipping_address":{"first_name":null,"address1":"Chestnut Street 92","phone":"555-625-1199","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":null,"address2":"","company":null,"latitude":null,"longitude":null,"name":"","country_code":"US","province_code":"KY"},"billing_address":{"first_name":null,"address1":"Chestnut Street 92","phone":"555-625-1199","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":null,"address2":"","company":null,"latitude":null,"longitude":null,"name":"","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/1df3f74fb8c052b18b18fb4efbfe39bc","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.06,"title":"Tax","price":"2.40"}],"tags":"","note_attributes":[],"total_price":"42.40","subtotal_price":"40.00","total_tax":"2.40","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"40.00","currency_code":"USD"},"presentment_money":{"amount":"40.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"42.40","currency_code":"USD"},"presentment_money":{"amount":"42.40","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"40.00","currency_code":"USD"},"presentment_money":{"amount":"40.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"2.40","currency_code":"USD"},"presentment_money":{"amount":"2.40","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"42.40","currency_code":"USD"},"presentment_money":{"amount":"42.40","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920536","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}}<span id="create-draft-order-billing-address">Create draft order with custom billing address</span>
curl -d '{"draft_order":{"line_items":[{"variant_id":447654529,"quantity":1}],"billing_address":{"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->billing_address = {"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->billing_address = {"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->billing_address = {"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920537,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:57-04:00","updated_at":"2026-07-02T11:07:57-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630444,"variant_id":447654529,"product_id":921728736,"title":"IPod Touch 8GB","variant_title":"Black","sku":"IPOD2009BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Touch 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630444"}],"api_client_id":755357713,"shipping_address":null,"billing_address":{"first_name":"Bob","address1":"123 Main St","phone":"555-555-5555","city":"Anytown","zip":"A1B2C3","province":"Ontario","country":"Canada","last_name":"Norman","address2":null,"company":null,"latitude":null,"longitude":null,"name":"Bob Norman","country_code":"CA","province_code":"ON"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/b6fb635b410771727be02625aa131217","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"224.87","subtotal_price":"199.00","total_tax":"25.87","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"224.87","currency_code":"USD"},"presentment_money":{"amount":"224.87","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"25.87","currency_code":"USD"},"presentment_money":{"amount":"25.87","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"224.87","currency_code":"USD"},"presentment_money":{"amount":"224.87","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920537","customer":{"id":1073339489,"created_at":"2026-07-02T11:07:57-04:00","updated_at":"2026-07-02T11:07:57-04:00","first_name":"Bob","last_name":"Norman","orders_count":0,"state":"disabled","total_spent":"0.00","last_order_id":null,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"","last_order_name":null,"email":null,"phone":null,"currency":"USD","tax_exemptions":[],"email_marketing_consent":null,"sms_marketing_consent":null,"admin_graphql_api_id":"gid://shopify/Customer/1073339489","default_address":{"id":1053317338,"customer_id":1073339489,"first_name":"Bob","last_name":"Norman","company":null,"address1":"123 Main St","address2":null,"city":"Anytown","province":null,"country":"Canada","zip":"A1B2C3","phone":"555-555-5555","name":"Bob Norman","province_code":null,"country_code":"CA","country_name":"Canada","default":true}}}}<span id="create-draft-order-shipping-address">Create draft order with custom shipping address</span>
curl -d '{"draft_order":{"line_items":[{"variant_id":447654529,"quantity":1}],"shipping_address":{"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->shipping_address = {"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->shipping_address = {"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->shipping_address = {"first_name":"Bob","last_name":"Norman","address1":"123 Main St","city":"Anytown","province":"ON","country":"Canada","zip":"A1B2C3","phone":"555-555-5555"}; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920534,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:53-04:00","updated_at":"2026-07-02T11:07:53-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630440,"variant_id":447654529,"product_id":921728736,"title":"IPod Touch 8GB","variant_title":"Black","sku":"IPOD2009BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Touch 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630440"}],"api_client_id":755357713,"shipping_address":{"first_name":"Bob","address1":"123 Main St","phone":"555-555-5555","city":"Anytown","zip":"A1B2C3","province":"Ontario","country":"Canada","last_name":"Norman","address2":null,"company":null,"latitude":null,"longitude":null,"name":"Bob Norman","country_code":"CA","province_code":"ON"},"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/cb34046d788530d0537befc9f8a3857d","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"224.87","subtotal_price":"199.00","total_tax":"25.87","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"224.87","currency_code":"USD"},"presentment_money":{"amount":"224.87","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"25.87","currency_code":"USD"},"presentment_money":{"amount":"25.87","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"224.87","currency_code":"USD"},"presentment_money":{"amount":"224.87","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920534","customer":{"id":1073339488,"created_at":"2026-07-02T11:07:52-04:00","updated_at":"2026-07-02T11:07:53-04:00","first_name":"Bob","last_name":"Norman","orders_count":0,"state":"disabled","total_spent":"0.00","last_order_id":null,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"","last_order_name":null,"email":null,"phone":null,"currency":"USD","tax_exemptions":[],"email_marketing_consent":null,"sms_marketing_consent":null,"admin_graphql_api_id":"gid://shopify/Customer/1073339488","default_address":{"id":1053317337,"customer_id":1073339488,"first_name":"Bob","last_name":"Norman","company":null,"address1":"123 Main St","address2":null,"city":"Anytown","province":null,"country":"Canada","zip":"A1B2C3","phone":"555-555-5555","name":"Bob Norman","province_code":null,"country_code":"CA","country_name":"Canada","default":true}}}}Create a draft order with a discounted line item
curl -d '{"draft_order":{"line_items":[{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.0","title":"Custom"}}]}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.0","title":"Custom"}}]; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.0","title":"Custom"}}]; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"title":"Custom Tee","price":"20.00","quantity":1,"applied_discount":{"description":"Custom discount","value_type":"fixed_amount","value":"10.0","amount":"10.0","title":"Custom"}}]; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920538,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:58-04:00","updated_at":"2026-07-02T11:07:58-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630445,"variant_id":null,"product_id":null,"title":"Custom Tee","variant_title":null,"sku":null,"vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.05,"title":"GST","price":"0.50"},{"rate":0.08,"title":"Tax","price":"0.80"}],"applied_discount":{"description":"Custom discount","value":"10.0","title":"Custom","amount":"10.00","value_type":"fixed_amount"},"name":"Custom Tee","properties":[],"custom":true,"price":"20.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630445"}],"api_client_id":755357713,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/dfe2ba4ae675e3bf4bd15381b298f3ac","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.05,"title":"GST","price":"0.50"},{"rate":0.08,"title":"Tax","price":"0.80"}],"tags":"","note_attributes":[],"total_price":"11.30","subtotal_price":"10.00","total_tax":"1.30","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"20.00","currency_code":"USD"},"presentment_money":{"amount":"20.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"11.30","currency_code":"USD"},"presentment_money":{"amount":"11.30","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"1.30","currency_code":"USD"},"presentment_money":{"amount":"1.30","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"11.30","currency_code":"USD"},"presentment_money":{"amount":"11.30","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920538"}}Create a simple draft order with only a product variant ID.
curl -d '{"draft_order":{"line_items":[{"variant_id":447654529,"quantity":1}]}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->post( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->post( test_session, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->post( );response
HTTP/1.1 201 Created{"draft_order":{"id":1069920535,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T11:07:55-04:00","updated_at":"2026-07-02T11:07:55-04:00","tax_exempt":false,"completed_at":null,"name":"#D5","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630441,"variant_id":447654529,"product_id":921728736,"title":"IPod Touch 8GB","variant_title":"Black","sku":"IPOD2009BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Touch 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630441"}],"api_client_id":755357713,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f43fc2910f7cb68a243d3f5b2f2f9458","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"224.87","subtotal_price":"199.00","total_tax":"25.87","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"224.87","currency_code":"USD"},"presentment_money":{"amount":"224.87","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"25.87","currency_code":"USD"},"presentment_money":{"amount":"25.87","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"224.87","currency_code":"USD"},"presentment_money":{"amount":"224.87","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1069920535"}}
Anchor to POST request, Send an invoicepostSend an invoice
Sends an invoice for the draft order.
You can include the following parameters in the body of the request:
- draft_order_invoice: The resource to send in the body of the request.
- to: The email address that will populate the to field of the email.
- from: The email address that will populate the from field of the email.
- bcc: The list of email addresses to include in the bcc field of the email. Emails must be associated with staff accounts on the shop.
- subject: The email subject.
- custom_message: The custom message displayed in the email.
Anchor to Parameters of Send an invoiceParameters
Send a customized invoice
Send a customized invoice
Send the default invoice
Send the default invoice
/admin/api/2026-07/draft_ orders/994118539/send_ invoice. json
Response
examples
Send a customized invoice
curl -d '{"draft_order_invoice":{"to":"first@example.com","from":"j.smith@example.com","bcc":["j.smith@example.com"],"subject":"Apple Computer Invoice","custom_message":"Thank you for ordering!"}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/994118539/send_invoice.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->draft_order_invoice = {"to":"first@example.com","from":"j.smith@example.com","bcc":["j.smith@example.com"],"subject":"Apple Computer Invoice","custom_message":"Thank you for ordering!"}; $draft_order->send_invoice( 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->draft_order_invoice = {"to":"first@example.com","from":"j.smith@example.com","bcc":["j.smith@example.com"],"subject":"Apple Computer Invoice","custom_message":"Thank you for ordering!"}; $draft_order->send_invoice( test_session, 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->draft_order_invoice = {"to":"first@example.com","from":"j.smith@example.com","bcc":["j.smith@example.com"],"subject":"Apple Computer Invoice","custom_message":"Thank you for ordering!"}; $draft_order->send_invoice( 994118539, );response
HTTP/1.1 201 Created{"draft_order_invoice":{"to":"first@example.com","from":"j.smith@example.com","subject":"Apple Computer Invoice","custom_message":"Thank you for ordering!","bcc":["j.smith@example.com"]}}Send the default invoice
curl -d '{"draft_order_invoice":{}}' \ -X POST "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/994118539/send_invoice.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->draft_order_invoice = {}; $draft_order->send_invoice( 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->draft_order_invoice = {}; $draft_order->send_invoice( test_session, 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->draft_order_invoice = {}; $draft_order->send_invoice( 994118539, );response
HTTP/1.1 201 Created{"draft_order_invoice":{"to":"bob.norman@mail.example.com","from":"\"John Smith Test Store\" <j.smith@example.com>","subject":"Draft Order #D2","custom_message":"","bcc":[]}}
Anchor to GET request, Retrieves a list of draft ordersgetRetrieves a list of draft orders
Retrieves a list of draft orders. Note: This endpoint implements pagination by using links that are provided in the response header. To learn more, refer to Make paginated requests to the REST Admin API.
A comma-separated list of fields to include in the response
comma-separated list of fields to include in the response
Filter by list of IDs
Amount of results
Restrict results to after the specified ID
Filter draft orders by their status.
Show status properties
open: All open orders (default)
invoice_sent: Draft orders for which invoice has been sent to the customer
completed: Draft orders that have been completed and turned into an order
Show orders last updated before date (format: 2014-04-25T16:15:47-04:00)
Show orders last updated after date (format: 2014-04-25T16:15:47-04:00)
List all draft orders
List all draft orders
Retrieve all draft orders after the specified ID
Retrieve all draft orders after the specified ID
Retrieve all draft orders but show only certain properties
Retrieve all draft orders but show only certain properties
Retrieve draft orders last updated after 2005-07-31 15:57:11 in the EDT timezone
Retrieve draft orders last updated after 2005-07-31 15:57:11 in the EDT timezone
/admin/api/2026-07/draft_ orders. json
Response
examples
List all draft orders
curl -X GET "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = admin.rest.resources.DraftOrder::all( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( );response
HTTP/1.1 200 OK{"draft_orders":[{"id":47884561,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D3","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":396451837,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/396451837"},{"id":547778412,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/547778412"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/05a560b8d92324c169cf8cec0154ffd2","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"445.76","subtotal_price":"398.00","total_tax":"47.76","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"445.76","currency_code":"USD"},"presentment_money":{"amount":"445.76","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"47.76","currency_code":"USD"},"presentment_money":{"amount":"47.76","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/47884561","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":72885271,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":498266019,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":2,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"23.88"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/498266019"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f945c7e2b158dbb69fa642cb8d79171f","created_on_api_version_handle":null,"applied_discount":null,"order_id":450789469,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"23.88"}],"tags":"","note_attributes":[],"total_price":"431.88","subtotal_price":"398.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"431.88","currency_code":"USD"},"presentment_money":{"amount":"431.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/72885271","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":256700579,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":164272150,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"14.33"},{"rate":0.04,"title":"GST","price":"7.16"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/164272150"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/966f65dca73e605f446c569fd1234fe2","created_on_api_version_handle":null,"applied_discount":{"description":"Special discount","value":"10.0","title":"Holiday Sale","amount":"19.90","value_type":"percentage"},"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"14.33"},{"rate":0.04,"title":"GST","price":"7.16"}],"tags":"","note_attributes":[],"total_price":"200.59","subtotal_price":"179.10","total_tax":"21.49","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"200.59","currency_code":"USD"},"presentment_money":{"amount":"200.59","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"179.10","currency_code":"USD"},"presentment_money":{"amount":"179.10","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"21.49","currency_code":"USD"},"presentment_money":{"amount":"21.49","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"19.90","currency_code":"USD"},"presentment_money":{"amount":"19.90","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/256700579","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":508385801,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":986473298,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"2.00"},{"rate":0.08,"title":"Tax","price":"4.00"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"50.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/986473298"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/82e7e23cf49deb86d398d26cc037d958","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"2.00"},{"rate":0.08,"title":"Tax","price":"4.00"}],"tags":"","note_attributes":[],"total_price":"56.00","subtotal_price":"50.00","total_tax":"6.00","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"50.00","currency_code":"USD"},"presentment_money":{"amount":"50.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"56.00","currency_code":"USD"},"presentment_money":{"amount":"56.00","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"50.00","currency_code":"USD"},"presentment_money":{"amount":"50.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"6.00","currency_code":"USD"},"presentment_money":{"amount":"6.00","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/508385801","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":622762746,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":466157049,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/466157049"},{"id":605833968,"variant_id":null,"product_id":null,"title":"IPod Nano Engraving","variant_title":null,"sku":"IPODENGRAVING","vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"applied_discount":null,"name":"IPod Nano Engraving","properties":[],"custom":true,"price":"30.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/605833968"},{"id":783764327,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"35.82"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/783764327"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461api","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"},{"rate":0.06,"title":"Tax","price":"35.82"},{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"885.56","subtotal_price":"826.00","total_tax":"49.56","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"885.56","currency_code":"USD"},"presentment_money":{"amount":"885.56","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"49.56","currency_code":"USD"},"presentment_money":{"amount":"49.56","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/622762746","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":691042898,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":"2016-12-31T19:00:00-05:00","created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":"2016-12-31T19:00:00-05:00","name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":158115779,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/158115779"}],"api_client_id":755357713,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/56dd92fb7adc1a2c38402b1aab15b2f4","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":450789469,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"220.94","subtotal_price":"199.00","total_tax":"11.94","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"220.94","currency_code":"USD"},"presentment_money":{"amount":"220.94","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.94","currency_code":"USD"},"presentment_money":{"amount":"11.94","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/691042898","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":728442221,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":508031037,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/508031037"}],"api_client_id":1354745,"shipping_address":{"first_name":"John","address1":"123 Test St","phone":null,"city":"Ottawa","zip":"K1A 0A1","province":"Ontario","country":"Canada","last_name":"Doe","address2":"","company":"","latitude":null,"longitude":null,"name":"John Doe","country_code":"CA","province_code":"ON"},"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/9fccc075645d9a60dfafdeef758b7153","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"222.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"222.88","currency_code":"USD"},"presentment_money":{"amount":"222.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/728442221","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":783426003,"note":null,"email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":419321901,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/419321901"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461208","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"220.94","subtotal_price":"199.00","total_tax":"11.94","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"220.94","currency_code":"USD"},"presentment_money":{"amount":"220.94","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.94","currency_code":"USD"},"presentment_money":{"amount":"11.94","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/783426003","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":814621489,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":190124544,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/190124544"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/afb4c5626c5afd22d0056eabeee287b0","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"tags":"","note_attributes":[],"total_price":"222.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"222.88","currency_code":"USD"},"presentment_money":{"amount":"222.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/814621489","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":994118539,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":994118539,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/994118539"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/ba8dcf6c022ccad3d47e3909e378e33f","created_on_api_version_handle":null,"applied_discount":{"description":"$5promo","value":"5.0","title":"$5promo","amount":"5.00","value_type":"fixed_amount"},"order_id":null,"shipping_line":{"custom":false,"handle":"eyJhbGciOiJIUzI1NiJ9.eyJ0aXRsZSI6IlVQUyBHcm91bmQiLCJjb2RlIjoiMyIsInNvdXJjZSI6InVwcyIsInByaWNlIjoiMTIuMjUiLCJjdXJyZW5jeSI6IlVTRCIsInByaWNlX3ByZXNlbnRtZW50IjoiMTIuMjUiLCJjdXJyZW5jeV9wcmVzZW50bWVudCI6IlVTRCIsImVzdGltYXRlZF9kZWxpdmVyeV90aW1lX3JhbmdlIjpudWxsLCJncm91cF9pZCI6bnVsbH0.5rCkHw9aNgCeQZi3Tf45S-PbW9JJd6PC5ZEapMVgIYY","title":"UPS Ground","price":"12.25"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"tags":"Wholesale","note_attributes":[],"total_price":"217.89","subtotal_price":"194.00","total_tax":"11.64","payment_terms":{"id":1054663032,"payment_terms_name":"Due on receipt","payment_terms_type":"receipt","due_in_days":null,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_schedules":[{"id":247860422,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_terms_id":1054663032,"reference_id":994118539,"reference_type":"DraftOrder","issued_at":null,"due_at":"2020-12-31T19:00:00-05:00","completed_at":null,"amount":"217.89","currency":"USD","total_price":"217.89","total_price_currency":"USD","balance_due":"217.89","balance_due_currency":"USD","total_balance":"217.89","total_balance_currency":"USD","outstanding_balance":"217.89","outstanding_balance_currency":"USD"}],"can_pay_early":true},"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"217.89","currency_code":"USD"},"presentment_money":{"amount":"217.89","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"194.00","currency_code":"USD"},"presentment_money":{"amount":"194.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.64","currency_code":"USD"},"presentment_money":{"amount":"11.64","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"5.00","currency_code":"USD"},"presentment_money":{"amount":"5.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"12.25","currency_code":"USD"},"presentment_money":{"amount":"12.25","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/994118539","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":1002081543,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":315140064,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":2,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"15.92"},{"rate":0.08,"title":"Tax","price":"31.84"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/315140064"},{"id":634361719,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"47.76"},{"rate":0.04,"title":"GST","price":"23.88"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/634361719"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/9327747231c7a04573ad8dffb96ed3db","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"15.92"},{"rate":0.08,"title":"Tax","price":"47.76"},{"rate":0.08,"title":"Tax","price":"31.84"},{"rate":0.04,"title":"GST","price":"23.88"}],"tags":"","note_attributes":[],"total_price":"1114.40","subtotal_price":"995.00","total_tax":"119.40","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"995.00","currency_code":"USD"},"presentment_money":{"amount":"995.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"1114.40","currency_code":"USD"},"presentment_money":{"amount":"1114.40","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"995.00","currency_code":"USD"},"presentment_money":{"amount":"995.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"119.40","currency_code":"USD"},"presentment_money":{"amount":"119.40","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1002081543","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":1012750869,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":294997122,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/294997122"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6noaddressapi","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"232.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"232.88","currency_code":"USD"},"presentment_money":{"amount":"232.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1012750869"},{"id":1036704632,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":504047742,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/504047742"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/cac4c28ffa078f51efe6f1db2703ec23","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"Express Shipping","price":"15.00"},"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"tags":"","note_attributes":[],"total_price":"237.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"237.88","currency_code":"USD"},"presentment_money":{"amount":"237.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"15.00","currency_code":"USD"},"presentment_money":{"amount":"15.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1036704632","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}]}Retrieve all draft orders after the specified ID
curl -X GET "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json?since_id=123" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = admin.rest.resources.DraftOrder::all( 123, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( 123, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( 123, );response
HTTP/1.1 200 OK{"draft_orders":[{"id":47884561,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D3","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":396451837,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/396451837"},{"id":547778412,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/547778412"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/05a560b8d92324c169cf8cec0154ffd2","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"445.76","subtotal_price":"398.00","total_tax":"47.76","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"445.76","currency_code":"USD"},"presentment_money":{"amount":"445.76","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"47.76","currency_code":"USD"},"presentment_money":{"amount":"47.76","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/47884561","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":72885271,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":498266019,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":2,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"23.88"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/498266019"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f945c7e2b158dbb69fa642cb8d79171f","created_on_api_version_handle":null,"applied_discount":null,"order_id":450789469,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"23.88"}],"tags":"","note_attributes":[],"total_price":"431.88","subtotal_price":"398.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"431.88","currency_code":"USD"},"presentment_money":{"amount":"431.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/72885271","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":256700579,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":164272150,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"14.33"},{"rate":0.04,"title":"GST","price":"7.16"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/164272150"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/966f65dca73e605f446c569fd1234fe2","created_on_api_version_handle":null,"applied_discount":{"description":"Special discount","value":"10.0","title":"Holiday Sale","amount":"19.90","value_type":"percentage"},"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"14.33"},{"rate":0.04,"title":"GST","price":"7.16"}],"tags":"","note_attributes":[],"total_price":"200.59","subtotal_price":"179.10","total_tax":"21.49","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"200.59","currency_code":"USD"},"presentment_money":{"amount":"200.59","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"179.10","currency_code":"USD"},"presentment_money":{"amount":"179.10","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"21.49","currency_code":"USD"},"presentment_money":{"amount":"21.49","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"19.90","currency_code":"USD"},"presentment_money":{"amount":"19.90","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/256700579","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":508385801,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":986473298,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"2.00"},{"rate":0.08,"title":"Tax","price":"4.00"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"50.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/986473298"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/82e7e23cf49deb86d398d26cc037d958","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"2.00"},{"rate":0.08,"title":"Tax","price":"4.00"}],"tags":"","note_attributes":[],"total_price":"56.00","subtotal_price":"50.00","total_tax":"6.00","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"50.00","currency_code":"USD"},"presentment_money":{"amount":"50.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"56.00","currency_code":"USD"},"presentment_money":{"amount":"56.00","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"50.00","currency_code":"USD"},"presentment_money":{"amount":"50.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"6.00","currency_code":"USD"},"presentment_money":{"amount":"6.00","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/508385801","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":622762746,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":466157049,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/466157049"},{"id":605833968,"variant_id":null,"product_id":null,"title":"IPod Nano Engraving","variant_title":null,"sku":"IPODENGRAVING","vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"applied_discount":null,"name":"IPod Nano Engraving","properties":[],"custom":true,"price":"30.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/605833968"},{"id":783764327,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"35.82"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/783764327"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461api","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"},{"rate":0.06,"title":"Tax","price":"35.82"},{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"885.56","subtotal_price":"826.00","total_tax":"49.56","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"885.56","currency_code":"USD"},"presentment_money":{"amount":"885.56","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"49.56","currency_code":"USD"},"presentment_money":{"amount":"49.56","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/622762746","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":691042898,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":"2016-12-31T19:00:00-05:00","created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":"2016-12-31T19:00:00-05:00","name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":158115779,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/158115779"}],"api_client_id":755357713,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/56dd92fb7adc1a2c38402b1aab15b2f4","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":450789469,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"220.94","subtotal_price":"199.00","total_tax":"11.94","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"220.94","currency_code":"USD"},"presentment_money":{"amount":"220.94","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.94","currency_code":"USD"},"presentment_money":{"amount":"11.94","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/691042898","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":728442221,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":508031037,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/508031037"}],"api_client_id":1354745,"shipping_address":{"first_name":"John","address1":"123 Test St","phone":null,"city":"Ottawa","zip":"K1A 0A1","province":"Ontario","country":"Canada","last_name":"Doe","address2":"","company":"","latitude":null,"longitude":null,"name":"John Doe","country_code":"CA","province_code":"ON"},"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/9fccc075645d9a60dfafdeef758b7153","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"222.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"222.88","currency_code":"USD"},"presentment_money":{"amount":"222.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/728442221","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":783426003,"note":null,"email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":419321901,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/419321901"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461208","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"220.94","subtotal_price":"199.00","total_tax":"11.94","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"220.94","currency_code":"USD"},"presentment_money":{"amount":"220.94","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.94","currency_code":"USD"},"presentment_money":{"amount":"11.94","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/783426003","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":814621489,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":190124544,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/190124544"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/afb4c5626c5afd22d0056eabeee287b0","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"tags":"","note_attributes":[],"total_price":"222.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"222.88","currency_code":"USD"},"presentment_money":{"amount":"222.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/814621489","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":994118539,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":994118539,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/994118539"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/ba8dcf6c022ccad3d47e3909e378e33f","created_on_api_version_handle":null,"applied_discount":{"description":"$5promo","value":"5.0","title":"$5promo","amount":"5.00","value_type":"fixed_amount"},"order_id":null,"shipping_line":{"custom":false,"handle":"eyJhbGciOiJIUzI1NiJ9.eyJ0aXRsZSI6IlVQUyBHcm91bmQiLCJjb2RlIjoiMyIsInNvdXJjZSI6InVwcyIsInByaWNlIjoiMTIuMjUiLCJjdXJyZW5jeSI6IlVTRCIsInByaWNlX3ByZXNlbnRtZW50IjoiMTIuMjUiLCJjdXJyZW5jeV9wcmVzZW50bWVudCI6IlVTRCIsImVzdGltYXRlZF9kZWxpdmVyeV90aW1lX3JhbmdlIjpudWxsLCJncm91cF9pZCI6bnVsbH0.5rCkHw9aNgCeQZi3Tf45S-PbW9JJd6PC5ZEapMVgIYY","title":"UPS Ground","price":"12.25"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"tags":"Wholesale","note_attributes":[],"total_price":"217.89","subtotal_price":"194.00","total_tax":"11.64","payment_terms":{"id":1054663032,"payment_terms_name":"Due on receipt","payment_terms_type":"receipt","due_in_days":null,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_schedules":[{"id":247860422,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_terms_id":1054663032,"reference_id":994118539,"reference_type":"DraftOrder","issued_at":null,"due_at":"2020-12-31T19:00:00-05:00","completed_at":null,"amount":"217.89","currency":"USD","total_price":"217.89","total_price_currency":"USD","balance_due":"217.89","balance_due_currency":"USD","total_balance":"217.89","total_balance_currency":"USD","outstanding_balance":"217.89","outstanding_balance_currency":"USD"}],"can_pay_early":true},"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"217.89","currency_code":"USD"},"presentment_money":{"amount":"217.89","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"194.00","currency_code":"USD"},"presentment_money":{"amount":"194.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.64","currency_code":"USD"},"presentment_money":{"amount":"11.64","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"5.00","currency_code":"USD"},"presentment_money":{"amount":"5.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"12.25","currency_code":"USD"},"presentment_money":{"amount":"12.25","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/994118539","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":1002081543,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":315140064,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":2,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"15.92"},{"rate":0.08,"title":"Tax","price":"31.84"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/315140064"},{"id":634361719,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"47.76"},{"rate":0.04,"title":"GST","price":"23.88"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/634361719"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/9327747231c7a04573ad8dffb96ed3db","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"15.92"},{"rate":0.08,"title":"Tax","price":"47.76"},{"rate":0.08,"title":"Tax","price":"31.84"},{"rate":0.04,"title":"GST","price":"23.88"}],"tags":"","note_attributes":[],"total_price":"1114.40","subtotal_price":"995.00","total_tax":"119.40","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"995.00","currency_code":"USD"},"presentment_money":{"amount":"995.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"1114.40","currency_code":"USD"},"presentment_money":{"amount":"1114.40","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"995.00","currency_code":"USD"},"presentment_money":{"amount":"995.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"119.40","currency_code":"USD"},"presentment_money":{"amount":"119.40","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1002081543","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":1012750869,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":294997122,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/294997122"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6noaddressapi","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"232.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"232.88","currency_code":"USD"},"presentment_money":{"amount":"232.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1012750869"},{"id":1036704632,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":504047742,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/504047742"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/cac4c28ffa078f51efe6f1db2703ec23","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"Express Shipping","price":"15.00"},"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"tags":"","note_attributes":[],"total_price":"237.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"237.88","currency_code":"USD"},"presentment_money":{"amount":"237.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"15.00","currency_code":"USD"},"presentment_money":{"amount":"15.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1036704632","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}]}Retrieve all draft orders but show only certain properties
curl -X GET "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json?fields=created_at%2Cid%2Cname%2Ctotal-price" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = admin.rest.resources.DraftOrder::all( created_at,id,name,total-price, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( created_at,id,name,total-price, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( created_at,id,name,total-price, );response
HTTP/1.1 200 OK{"draft_orders":[{"id":47884561,"created_at":"2023-12-31T19:00:00-05:00","name":"#D3","total_price":"445.76"},{"id":72885271,"created_at":"2026-07-02T10:36:00-04:00","name":"#D1","total_price":"431.88"},{"id":256700579,"created_at":"2023-12-31T19:00:00-05:00","name":"#D4","total_price":"200.59"},{"id":508385801,"created_at":"2023-12-31T19:00:00-05:00","name":"#D4","total_price":"56.00"},{"id":622762746,"created_at":"2026-07-02T10:36:00-04:00","name":"#D1","total_price":"885.56"},{"id":691042898,"created_at":"2026-07-02T10:36:00-04:00","name":"#D1","total_price":"220.94"},{"id":728442221,"created_at":"2023-12-31T19:00:00-05:00","name":"#D4","total_price":"222.88"},{"id":783426003,"created_at":"2023-12-31T19:00:00-05:00","name":"#D1","total_price":"220.94"},{"id":814621489,"created_at":"2023-12-31T19:00:00-05:00","name":"#D4","total_price":"222.88"},{"id":994118539,"created_at":"2026-07-02T10:36:00-04:00","name":"#D2","total_price":"217.89"},{"id":1002081543,"created_at":"2023-12-31T19:00:00-05:00","name":"#D4","total_price":"1114.40"},{"id":1012750869,"created_at":"2026-07-02T10:36:00-04:00","name":"#D2","total_price":"232.88"},{"id":1036704632,"created_at":"2023-12-31T19:00:00-05:00","name":"#D4","total_price":"237.88"}]}Retrieve draft orders last updated after 2005-07-31 15:57:11 in the EDT timezone
curl -X GET "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders.json?updated_at_min=2005-07-31T15%3A57%3A11-04%3A00" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = admin.rest.resources.DraftOrder::all( 2005-07-31T15:57:11-04:00, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( 2005-07-31T15:57:11-04:00, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $response = DraftOrder::all( 2005-07-31T15:57:11-04:00, );response
HTTP/1.1 200 OK{"draft_orders":[{"id":47884561,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D3","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":396451837,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/396451837"},{"id":547778412,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/547778412"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/05a560b8d92324c169cf8cec0154ffd2","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"445.76","subtotal_price":"398.00","total_tax":"47.76","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"445.76","currency_code":"USD"},"presentment_money":{"amount":"445.76","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"47.76","currency_code":"USD"},"presentment_money":{"amount":"47.76","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/47884561","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":72885271,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":498266019,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":2,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"23.88"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/498266019"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f945c7e2b158dbb69fa642cb8d79171f","created_on_api_version_handle":null,"applied_discount":null,"order_id":450789469,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"23.88"}],"tags":"","note_attributes":[],"total_price":"431.88","subtotal_price":"398.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"431.88","currency_code":"USD"},"presentment_money":{"amount":"431.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"398.00","currency_code":"USD"},"presentment_money":{"amount":"398.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/72885271","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":256700579,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":164272150,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"14.33"},{"rate":0.04,"title":"GST","price":"7.16"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/164272150"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/966f65dca73e605f446c569fd1234fe2","created_on_api_version_handle":null,"applied_discount":{"description":"Special discount","value":"10.0","title":"Holiday Sale","amount":"19.90","value_type":"percentage"},"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"14.33"},{"rate":0.04,"title":"GST","price":"7.16"}],"tags":"","note_attributes":[],"total_price":"200.59","subtotal_price":"179.10","total_tax":"21.49","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"200.59","currency_code":"USD"},"presentment_money":{"amount":"200.59","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"179.10","currency_code":"USD"},"presentment_money":{"amount":"179.10","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"21.49","currency_code":"USD"},"presentment_money":{"amount":"21.49","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"19.90","currency_code":"USD"},"presentment_money":{"amount":"19.90","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/256700579","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":508385801,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":986473298,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"2.00"},{"rate":0.08,"title":"Tax","price":"4.00"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"50.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/986473298"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/82e7e23cf49deb86d398d26cc037d958","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"2.00"},{"rate":0.08,"title":"Tax","price":"4.00"}],"tags":"","note_attributes":[],"total_price":"56.00","subtotal_price":"50.00","total_tax":"6.00","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"50.00","currency_code":"USD"},"presentment_money":{"amount":"50.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"56.00","currency_code":"USD"},"presentment_money":{"amount":"56.00","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"50.00","currency_code":"USD"},"presentment_money":{"amount":"50.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"6.00","currency_code":"USD"},"presentment_money":{"amount":"6.00","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/508385801","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":622762746,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":466157049,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/466157049"},{"id":605833968,"variant_id":null,"product_id":null,"title":"IPod Nano Engraving","variant_title":null,"sku":"IPODENGRAVING","vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"applied_discount":null,"name":"IPod Nano Engraving","properties":[],"custom":true,"price":"30.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/605833968"},{"id":783764327,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"35.82"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/783764327"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461api","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"},{"rate":0.06,"title":"Tax","price":"35.82"},{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"885.56","subtotal_price":"826.00","total_tax":"49.56","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"885.56","currency_code":"USD"},"presentment_money":{"amount":"885.56","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"49.56","currency_code":"USD"},"presentment_money":{"amount":"49.56","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/622762746","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":691042898,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":"2016-12-31T19:00:00-05:00","created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":"2016-12-31T19:00:00-05:00","name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":158115779,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/158115779"}],"api_client_id":755357713,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/56dd92fb7adc1a2c38402b1aab15b2f4","created_on_api_version_handle":"unstable","applied_discount":null,"order_id":450789469,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"220.94","subtotal_price":"199.00","total_tax":"11.94","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"220.94","currency_code":"USD"},"presentment_money":{"amount":"220.94","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.94","currency_code":"USD"},"presentment_money":{"amount":"11.94","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/691042898","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":728442221,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":508031037,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/508031037"}],"api_client_id":1354745,"shipping_address":{"first_name":"John","address1":"123 Test St","phone":null,"city":"Ottawa","zip":"K1A 0A1","province":"Ontario","country":"Canada","last_name":"Doe","address2":"","company":"","latitude":null,"longitude":null,"name":"John Doe","country_code":"CA","province_code":"ON"},"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/9fccc075645d9a60dfafdeef758b7153","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"222.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"222.88","currency_code":"USD"},"presentment_money":{"amount":"222.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/728442221","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":783426003,"note":null,"email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":419321901,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/419321901"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461208","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"220.94","subtotal_price":"199.00","total_tax":"11.94","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"220.94","currency_code":"USD"},"presentment_money":{"amount":"220.94","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.94","currency_code":"USD"},"presentment_money":{"amount":"11.94","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/783426003","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":814621489,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":190124544,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/190124544"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/afb4c5626c5afd22d0056eabeee287b0","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"tags":"","note_attributes":[],"total_price":"222.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"222.88","currency_code":"USD"},"presentment_money":{"amount":"222.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/814621489","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":994118539,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":994118539,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/994118539"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/ba8dcf6c022ccad3d47e3909e378e33f","created_on_api_version_handle":null,"applied_discount":{"description":"$5promo","value":"5.0","title":"$5promo","amount":"5.00","value_type":"fixed_amount"},"order_id":null,"shipping_line":{"custom":false,"handle":"eyJhbGciOiJIUzI1NiJ9.eyJ0aXRsZSI6IlVQUyBHcm91bmQiLCJjb2RlIjoiMyIsInNvdXJjZSI6InVwcyIsInByaWNlIjoiMTIuMjUiLCJjdXJyZW5jeSI6IlVTRCIsInByaWNlX3ByZXNlbnRtZW50IjoiMTIuMjUiLCJjdXJyZW5jeV9wcmVzZW50bWVudCI6IlVTRCIsImVzdGltYXRlZF9kZWxpdmVyeV90aW1lX3JhbmdlIjpudWxsLCJncm91cF9pZCI6bnVsbH0.5rCkHw9aNgCeQZi3Tf45S-PbW9JJd6PC5ZEapMVgIYY","title":"UPS Ground","price":"12.25"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"tags":"Wholesale","note_attributes":[],"total_price":"217.89","subtotal_price":"194.00","total_tax":"11.64","payment_terms":{"id":1054663032,"payment_terms_name":"Due on receipt","payment_terms_type":"receipt","due_in_days":null,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_schedules":[{"id":247860422,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_terms_id":1054663032,"reference_id":994118539,"reference_type":"DraftOrder","issued_at":null,"due_at":"2020-12-31T19:00:00-05:00","completed_at":null,"amount":"217.89","currency":"USD","total_price":"217.89","total_price_currency":"USD","balance_due":"217.89","balance_due_currency":"USD","total_balance":"217.89","total_balance_currency":"USD","outstanding_balance":"217.89","outstanding_balance_currency":"USD"}],"can_pay_early":true},"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"217.89","currency_code":"USD"},"presentment_money":{"amount":"217.89","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"194.00","currency_code":"USD"},"presentment_money":{"amount":"194.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"11.64","currency_code":"USD"},"presentment_money":{"amount":"11.64","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"5.00","currency_code":"USD"},"presentment_money":{"amount":"5.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"12.25","currency_code":"USD"},"presentment_money":{"amount":"12.25","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/994118539","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":1002081543,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":315140064,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":2,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"15.92"},{"rate":0.08,"title":"Tax","price":"31.84"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/315140064"},{"id":634361719,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"47.76"},{"rate":0.04,"title":"GST","price":"23.88"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/634361719"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/9327747231c7a04573ad8dffb96ed3db","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":null,"tax_lines":[{"rate":0.04,"title":"GST","price":"15.92"},{"rate":0.08,"title":"Tax","price":"47.76"},{"rate":0.08,"title":"Tax","price":"31.84"},{"rate":0.04,"title":"GST","price":"23.88"}],"tags":"","note_attributes":[],"total_price":"1114.40","subtotal_price":"995.00","total_tax":"119.40","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"995.00","currency_code":"USD"},"presentment_money":{"amount":"995.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"1114.40","currency_code":"USD"},"presentment_money":{"amount":"1114.40","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"995.00","currency_code":"USD"},"presentment_money":{"amount":"995.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"119.40","currency_code":"USD"},"presentment_money":{"amount":"119.40","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1002081543","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}},{"id":1012750869,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":294997122,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/294997122"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6noaddressapi","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"232.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"232.88","currency_code":"USD"},"presentment_money":{"amount":"232.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1012750869"},{"id":1036704632,"note":null,"email":null,"taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2023-12-31T19:00:00-05:00","updated_at":"2023-12-31T19:00:00-05:00","tax_exempt":false,"completed_at":null,"name":"#D4","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":504047742,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/504047742"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/cac4c28ffa078f51efe6f1db2703ec23","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"Express Shipping","price":"15.00"},"tax_lines":[{"rate":0.08,"title":"Tax","price":"15.92"},{"rate":0.04,"title":"GST","price":"7.96"}],"tags":"","note_attributes":[],"total_price":"237.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"237.88","currency_code":"USD"},"presentment_money":{"amount":"237.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"15.00","currency_code":"USD"},"presentment_money":{"amount":"15.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1036704632","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}]}
Anchor to GET request, Receive a single DraftOrdergetReceive a single Draft Order
Retrieves a specific draft order
A comma-separated list of fields to include in the response
Get a representation of a single draft order
Get a representation of a single draft order
/admin/api/2026-07/draft_ orders/994118539. json
Response
examples
Get a representation of a single draft order
curl -X GET "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/994118539.json" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $result = admin.rest.resources.DraftOrder::find( 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $result = DraftOrder::find( 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $result = DraftOrder::find( 994118539, );response
HTTP/1.1 200 OK{"draft_order":{"id":994118539,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":994118539,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/994118539"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/ba8dcf6c022ccad3d47e3909e378e33f","created_on_api_version_handle":null,"applied_discount":{"description":"$5promo","value":"5.0","title":"$5promo","amount":"5.00","value_type":"fixed_amount"},"order_id":null,"shipping_line":{"custom":false,"handle":"eyJhbGciOiJIUzI1NiJ9.eyJ0aXRsZSI6IlVQUyBHcm91bmQiLCJjb2RlIjoiMyIsInNvdXJjZSI6InVwcyIsInByaWNlIjoiMTIuMjUiLCJjdXJyZW5jeSI6IlVTRCIsInByaWNlX3ByZXNlbnRtZW50IjoiMTIuMjUiLCJjdXJyZW5jeV9wcmVzZW50bWVudCI6IlVTRCIsImVzdGltYXRlZF9kZWxpdmVyeV90aW1lX3JhbmdlIjpudWxsLCJncm91cF9pZCI6bnVsbH0.5rCkHw9aNgCeQZi3Tf45S-PbW9JJd6PC5ZEapMVgIYY","title":"UPS Ground","price":"12.25"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.64"}],"tags":"Wholesale","note_attributes":[],"total_price":"217.89","subtotal_price":"194.00","total_tax":"11.64","payment_terms":{"id":1054663032,"payment_terms_name":"Due on receipt","payment_terms_type":"receipt","due_in_days":null,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_schedules":[{"id":247860422,"created_at":"2020-12-31T19:00:00-05:00","updated_at":"2020-12-31T19:00:00-05:00","payment_terms_id":1054663032,"reference_id":994118539,"reference_type":"DraftOrder","issued_at":null,"due_at":"2020-12-31T19:00:00-05:00","completed_at":null,"amount":"217.89","currency":"USD","total_price":"217.89","total_price_currency":"USD","balance_due":"217.89","balance_due_currency":"USD","total_balance":"217.89","total_balance_currency":"USD","outstanding_balance":"217.89","outstanding_balance_currency":"USD"}],"can_pay_early":true},"admin_graphql_api_id":"gid://shopify/DraftOrder/994118539","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T10:36:00-04:00","first_name":"Bob","last_name":"Norman","orders_count":1,"state":"disabled","total_spent":"199.65","last_order_id":450789469,"note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"tags":"Léon, Noël","last_order_name":"#1001","email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"email_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null},"sms_marketing_consent":{"state":"not_subscribed","opt_in_level":null,"consent_updated_at":null,"consent_collected_from":null},"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}}
Anchor to GET request, Receive a count of all DraftOrdersgetReceive a count of all Draft Orders
Retrieves a count of draft orders
Count draft orders after the specified ID.
Count draft orders that have a given status.
Show status properties
open: All open orders (default)
invoice_sent: Draft orders for which invoice has been sent to the customer
completed: Draft orders that have been completed and turned into an order
Count draft orders last updated before the specified date (format: 2014-04-25T16:15:47-04:00).
Count draft orders last updated after the specified date (format: 2014-04-25T16:15:47-04:00).
Count all draft orders
Count all draft orders
/admin/api/2026-07/draft_ orders/count. json
Response
examples
Count all draft orders
curl -X GET "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/count.json" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order->count( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order->count( );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order->count( );response
HTTP/1.1 200 OK{"count":13}
Anchor to PUT request, Modify an existing DraftOrderputModify an existing Draft Order
Updates a draft order.
All non read-only properties of the DraftOrder Resource can be edited.
If a checkout has been started for a draft order, any update to the draft will unlink the checkout. Checkouts are created but not immediately completed when opening the merchant credit card modal in the admin, and when a buyer opens the invoice URL. This is usually fine, but there is an edge case where a checkout is in progress and the draft is updated before the checkout completes. This will not interfere with the checkout and order creation, but if the link from draft to checkout is broken the draft will remain open even after the order is created.
If a checkout has been started for a draft order, any update to the draft will unlink the checkout. Checkouts are created but not immediately completed when opening the merchant credit card modal in the admin, and when a buyer opens the invoice URL. This is usually fine, but there is an edge case where a checkout is in progress and the draft is updated before the checkout completes. This will not interfere with the checkout and order creation, but if the link from draft to checkout is broken the draft will remain open even after the order is created.
Set a discount on a draft order
Set a discount on a draft order
Add a note to a draft order
Add a note to a draft order
Change a line item on a draft order
Change a line item on a draft order
/admin/api/2026-07/draft_ orders/1012750869. json
Response
examples
<span id="set-discount-on-a-draft-order">Set a discount on a draft order</span>
curl -d '{"draft_order":{"id":1012750869,"applied_discount":{"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"19.90","title":"Custom"}}}' \ -X PUT "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/1012750869.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->applied_discount = {"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"19.90","title":"Custom"}; $draft_order->put( 1012750869, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->applied_discount = {"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"19.90","title":"Custom"}; $draft_order->put( test_session, 1012750869, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->applied_discount = {"description":"Custom discount","value_type":"percentage","value":"10.0","amount":"19.90","title":"Custom"}; $draft_order->put( 1012750869, );response
HTTP/1.1 200 OK{"draft_order":{"taxes_included":false,"email":"bob.norman@mail.example.com","currency":"USD","note":"rush order","id":1012750869,"invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:50-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":294997122,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.16"},{"rate":0.08,"title":"Tax","price":"14.33"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/294997122"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6noaddressapi","created_on_api_version_handle":null,"applied_discount":{"description":"Custom discount","value":"10.0","title":"Custom","amount":"19.90","value_type":"percentage"},"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.04,"title":"GST","price":"7.16"},{"rate":0.08,"title":"Tax","price":"14.33"}],"tags":"","note_attributes":[],"total_price":"210.59","subtotal_price":"179.10","total_tax":"21.49","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"210.59","currency_code":"USD"},"presentment_money":{"amount":"210.59","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"179.10","currency_code":"USD"},"presentment_money":{"amount":"179.10","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"21.49","currency_code":"USD"},"presentment_money":{"amount":"21.49","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"19.90","currency_code":"USD"},"presentment_money":{"amount":"19.90","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"210.59","currency_code":"USD"},"presentment_money":{"amount":"210.59","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1012750869"}}Add a note to a draft order
curl -d '{"draft_order":{"id":1012750869,"note":"Customer contacted us about a custom engraving on this iPod"}}' \ -X PUT "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/1012750869.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->note = "Customer contacted us about a custom engraving on this iPod"; $draft_order->put( 1012750869, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->note = "Customer contacted us about a custom engraving on this iPod"; $draft_order->put( test_session, 1012750869, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->note = "Customer contacted us about a custom engraving on this iPod"; $draft_order->put( 1012750869, );response
HTTP/1.1 200 OK{"draft_order":{"taxes_included":false,"note":"Customer contacted us about a custom engraving on this iPod","email":"bob.norman@mail.example.com","currency":"USD","id":1012750869,"invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:42-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":294997122,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/294997122"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6noaddressapi","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.04,"title":"GST","price":"7.96"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"232.88","subtotal_price":"199.00","total_tax":"23.88","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"232.88","currency_code":"USD"},"presentment_money":{"amount":"232.88","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"23.88","currency_code":"USD"},"presentment_money":{"amount":"23.88","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"232.88","currency_code":"USD"},"presentment_money":{"amount":"232.88","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1012750869"}}Change a line item on a draft order
curl -d '{"draft_order":{"id":1012750869,"line_items":[{"variant_id":447654529,"quantity":1}]}}' \ -X PUT "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/1012750869.json" \ -H "X-Shopify-Access-Token: {access_token}" \ -H "Content-Type: application/json"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->put( 1012750869, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->put( test_session, 1012750869, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->id = 1012750869; $draft_order->line_items = [{"variant_id":447654529,"quantity":1}]; $draft_order->put( 1012750869, );response
HTTP/1.1 200 OK{"draft_order":{"taxes_included":false,"email":"bob.norman@mail.example.com","currency":"USD","note":"rush order","id":1012750869,"invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:56-04:00","tax_exempt":false,"completed_at":null,"name":"#D2","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"open","line_items":[{"id":1066630442,"variant_id":447654529,"product_id":921728736,"title":"IPod Touch 8GB","variant_title":"Black","sku":"IPOD2009BLACK","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"applied_discount":null,"name":"IPod Touch 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/1066630442"}],"api_client_id":1354745,"shipping_address":null,"billing_address":null,"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6noaddressapi","created_on_api_version_handle":null,"applied_discount":null,"order_id":null,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.05,"title":"GST","price":"9.95"},{"rate":0.08,"title":"Tax","price":"15.92"}],"tags":"","note_attributes":[],"total_price":"234.87","subtotal_price":"199.00","total_tax":"25.87","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"234.87","currency_code":"USD"},"presentment_money":{"amount":"234.87","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"199.00","currency_code":"USD"},"presentment_money":{"amount":"199.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"25.87","currency_code":"USD"},"presentment_money":{"amount":"25.87","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"234.87","currency_code":"USD"},"presentment_money":{"amount":"234.87","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/1012750869"}}
Anchor to PUT request, Complete a draft orderputComplete a draft order
Completes a draft order.
Using the DraftOrder resource, you can create a draft order and transition it to an order.
The following flows are supported:
- Create a draft order that calculates taxes and totals but accept payment from the customer outside of Shopify.
- Create a draft order and send an invoice to the customer.
Sets the payment gateway ID. For more information, see the Payments API.
Sets payment pending to true or false.
Show payment_pending properties
true: The resulting order will be unpaid and can be captured later.
false: The resulting order will be marked as paid through either the default or specified gateway.
Complete a draft order, marking it as paid
Complete a draft order, marking it as paid
Complete a draft order, marking it as pending
Complete a draft order, marking it as pending
/admin/api/2026-07/draft_ orders/622762746/complete. json
Response
examples
Complete a draft order, marking it as paid
curl -X PUT "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/622762746/complete.json" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->complete( 622762746, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->complete( test_session, 622762746, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->complete( 622762746, );response
HTTP/1.1 200 OK{"draft_order":{"id":622762746,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:52-04:00","tax_exempt":false,"completed_at":"2026-07-02T11:07:52-04:00","name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":466157049,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/466157049"},{"id":605833968,"variant_id":null,"product_id":null,"title":"IPod Nano Engraving","variant_title":null,"sku":"IPODENGRAVING","vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"applied_discount":null,"name":"IPod Nano Engraving","properties":[],"custom":true,"price":"30.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/605833968"},{"id":783764327,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"35.82"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/783764327"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461api","created_on_api_version_handle":null,"applied_discount":null,"order_id":1073459991,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"},{"rate":0.06,"title":"Tax","price":"35.82"},{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"885.56","subtotal_price":"826.00","total_tax":"49.56","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"885.56","currency_code":"USD"},"presentment_money":{"amount":"885.56","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"49.56","currency_code":"USD"},"presentment_money":{"amount":"49.56","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/622762746","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:52-04:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}}Complete a draft order, marking it as pending
curl -X PUT "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/622762746/complete.json?payment_pending=true" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->complete( 622762746, true, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->complete( test_session, 622762746, true, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order = new DraftOrder($this->test_session); $draft_order->complete( 622762746, true, );response
HTTP/1.1 200 OK{"draft_order":{"id":622762746,"note":"rush order","email":"bob.norman@mail.example.com","taxes_included":false,"currency":"USD","invoice_sent_at":null,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:48-04:00","tax_exempt":false,"completed_at":"2026-07-02T11:07:48-04:00","name":"#D1","allow_discount_codes_in_checkout?":false,"b2b?":false,"status":"completed","line_items":[{"id":466157049,"variant_id":39072856,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Green","sku":"IPOD2008GREEN","vendor":"Apple","quantity":1,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"11.94"}],"applied_discount":null,"name":"IPod Nano - 8GB - Green","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/466157049"},{"id":605833968,"variant_id":null,"product_id":null,"title":"IPod Nano Engraving","variant_title":null,"sku":"IPODENGRAVING","vendor":null,"quantity":1,"requires_shipping":false,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":0,"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"}],"applied_discount":null,"name":"IPod Nano Engraving","properties":[],"custom":true,"price":"30.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/605833968"},{"id":783764327,"variant_id":457924702,"product_id":632910392,"title":"IPod Nano - 8GB","variant_title":"Black","sku":"IPOD2008BLACK","vendor":"Apple","quantity":3,"requires_shipping":true,"taxable":true,"gift_card":false,"fulfillment_service":"manual","grams":567,"tax_lines":[{"rate":0.06,"title":"Tax","price":"35.82"}],"applied_discount":null,"name":"IPod Nano - 8GB - Black","properties":[],"custom":false,"price":"199.00","admin_graphql_api_id":"gid://shopify/DraftOrderLineItem/783764327"}],"api_client_id":1354745,"shipping_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"billing_address":{"first_name":"Bob","address1":"Chestnut Street 92","phone":"+1(502)-459-2181","city":"Louisville","zip":"40202","province":"Kentucky","country":"United States","last_name":"Norman","address2":"","company":null,"latitude":45.41634,"longitude":-75.6868,"name":"Bob Norman","country_code":"US","province_code":"KY"},"invoice_url":"https://jsmith.myshopify.com/548380009/invoices/f1df1a91d10a6d7704cf2f0315461api","created_on_api_version_handle":null,"applied_discount":null,"order_id":1073459990,"shipping_line":{"custom":true,"handle":null,"title":"custom shipping","price":"10.00"},"tax_lines":[{"rate":0.06,"title":"Tax","price":"1.80"},{"rate":0.06,"title":"Tax","price":"35.82"},{"rate":0.06,"title":"Tax","price":"11.94"}],"tags":"","note_attributes":[],"total_price":"885.56","subtotal_price":"826.00","total_tax":"49.56","payment_terms":null,"presentment_currency":"USD","total_line_items_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_price_set":{"shop_money":{"amount":"885.56","currency_code":"USD"},"presentment_money":{"amount":"885.56","currency_code":"USD"}},"subtotal_price_set":{"shop_money":{"amount":"826.00","currency_code":"USD"},"presentment_money":{"amount":"826.00","currency_code":"USD"}},"total_tax_set":{"shop_money":{"amount":"49.56","currency_code":"USD"},"presentment_money":{"amount":"49.56","currency_code":"USD"}},"total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"total_shipping_price_set":{"shop_money":{"amount":"10.00","currency_code":"USD"},"presentment_money":{"amount":"10.00","currency_code":"USD"}},"total_additional_fees_set":null,"total_duties_set":null,"amount_due_now_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"amount_due_later_set":{"shop_money":{"amount":"0.00","currency_code":"USD"},"presentment_money":{"amount":"0.00","currency_code":"USD"}},"admin_graphql_api_id":"gid://shopify/DraftOrder/622762746","customer":{"id":207119551,"created_at":"2026-07-02T10:36:00-04:00","updated_at":"2026-07-02T11:07:48-04:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"email":"bob.norman@mail.example.com","phone":"+16136120707","currency":"USD","tax_exemptions":[],"admin_graphql_api_id":"gid://shopify/Customer/207119551","default_address":{"id":207119551,"customer_id":207119551,"first_name":null,"last_name":null,"company":null,"address1":"Chestnut Street 92","address2":"","city":"Louisville","province":"Kentucky","country":"United States","zip":"40202","phone":"555-625-1199","name":"","province_code":"KY","country_code":"US","country_name":"United States","default":true}}}}
Anchor to DELETE request, Remove an existing DraftOrderdelRemove an existing Draft Order
Deletes a draft order
Permanently delete a draft order
Permanently delete a draft order
/admin/api/2026-07/draft_ orders/994118539. json
Response
examples
Permanently delete a draft order
curl -X DELETE "https://your-development-store.myshopify.com/admin/api/2026-07/draft_orders/994118539.json" \ -H "X-Shopify-Access-Token: {access_token}"use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order->delete( 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order->delete( 994118539, );use Shopify\Rest\Admin2026_07\DraftOrder; use Shopify\Utils; $this->test_session = Utils::loadCurrentSession( $requestHeaders, $requestCookies, $isOnline ); $draft_order->delete( 994118539, );response
HTTP/1.1 200 OK{}