# Abandoned checkouts

<p>You can use the <a href="/api/admin-rest/latest/resources/abandoned-checkouts#resource_object">Abandoned checkouts</a> resource to retrieve a list and a count of abandoned checkouts. A checkout is considered abandoned after the customer has added contact information, but before the customer has completed their purchase.</p>
  <p>This resource may be helpful to complete the following actions:</p>
  <ul>
    <li>Gather marketing information on customers who have abandoned their cart.</li>
    <li>Use information to remarket to abandoned checkout customers.</li>
    <li>Understand customers’ behavior.</li>
    <li>Track abandoned checkouts over time.</li>
    <li>View abandoned checkout items.</li>
  </ul>

## Resource Properties

### Abandoned checkouts

* abandoned_checkout_url: The recovery URL that's sent to a customer so they can recover their checkout.
  * Type: x-string
  * Example: "https://www.snowdevil.ca/14168/checkouts/0123456789abcdef0456456789abcdef/recover?key=6dacd6065bb80268bda857ee"
* billing_address:         The mailing address associated with the payment method. It has the following properties:
          <ul>
              <li><strong>address1</strong>: The street address of the billing address.</li>
              <li><strong>address2</strong>: An optional additional field for the street address of the billing address.</li>
              <li><strong>city</strong>: The city of the billing address.</li>
              <li><strong>company</strong>: The company of the person associated with the billing address.</li>
              <li><strong>country</strong>: The name of the country of the billing address.</li>
              <li><strong>country_code</strong>: The two-letter code (<a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2" target="_blank">ISO 3166-1 alpha-2 format</a>) for the country of the billing address.</li>
              <li><strong>default</strong>: Whether this is the default address for the customer.</li>
              <li><strong>first_name</strong>: The first name of the person associated with the payment method.</li>
              <li><strong>last_name</strong>: The last name of the person associated with the payment method.</li>
              <li><strong>latitude</strong>: The latitude of the billing address.</li>
              <li><strong>longitude</strong>: The longitude of the billing address.</li>
              <li><strong>name</strong>: The full name of the person associated with the payment method.</li>
              <li><strong>phone</strong>: The phone number at the billing address.</li>
              <li><strong>province</strong>: The name of the state or province of the billing address.</li>
              <li><strong>province_code</strong>: The alphanumeric abbreviation of the state or province of the billing address.</li>
              <li><strong>zip</strong>: The zip or postal code of the billing address.</li>
            </ul>

  * Type: x-string
  * Example: {"address1"=>"Chestnut Street 92", "address2"=>"", "city"=>"Louisville", "company"=>nil, "country"=>"United States", "country_code"=>"US", "default"=>true, "first_name"=>"Greg", "id"=>207119551, "last_name"=>"Piotrowski", "name"=>"Greg Piotrowski", "phone"=>"555-625-1199", "province"=>"Kentucky", "province_code"=>"KY", "zip"=>"40202"}
* buyer_accepts_marketing: Whether the customer would like to receive email updates from the shop. This is set by the <b>I want to receive occasional emails about new products, promotions and other news</b> checkbox during checkout.
  * Type: x-string
  * Example: false
* buyer_accepts_sms_marketing: Whether the customer would like to receive SMS updates from the shop. This is set by the <b>Text me with news and offers</b> checkbox during checkout.
  * Type: x-string
  * Example: false
* cart_token: The ID for the cart that's attached to the checkout.
  * Type: x-string
  * Example: "0123456789abcdef0456456789abcdef"
* closed_at: The date and time (<a href='//en.wikipedia.org/wiki/ISO_8601' target="_blank">ISO 8601 format</a>) when the checkout was closed. If the checkout was not closed, then this value is <code>null</code>.
  * Type: x-string
  * Example: nil
* completed_at: The date and time (<a href='//en.wikipedia.org/wiki/ISO_8601' target="_blank">ISO 8601 format</a>) when the checkout was completed. For abandoned checkouts, this value is <code>null</code> until a customer completes the checkout using the recovery URL.
  * Type: x-string
  * Example: nil
* created_at: The date and time (<a href='//en.wikipedia.org/wiki/ISO_8601' target="_blank">ISO 8601 format</a>) when the checkout was created.
  * Type: x-string
  * Example: "2008-01-10T11:00:00-05:00"
* currency:           The three-letter code (<a href="https://en.wikipedia.org/wiki/ISO_4217">ISO 4217</a> format) of the shop's default currency at the time of checkout. For the currency that the customer used at checkout, see <code>presentment_currency</code>.

  * Type: x-string
  * Example: {"currency"=>"USD"}
* customer:           The customer details associated with the abandoned checkout. For more information, refer to the <a href="/api/admin-rest/latest/resources/customer">Customer</a> resource.

  * Type: x-string
  * Example: {"accepts_marketing"=>false, "created_at"=>"2012-03-13T16:09:55-04:00", "email"=>"bob.norman@mail.example.com", "first_name"=>"Bob", "id"=>207119551, "last_name"=>"Norman", "note"=>nil, "orders_count"=>"0", "state"=>nil, "total_spent"=>"0.00", "updated_at"=>"2012-03-13T16:09:55-04:00", "tags"=>"tagcity"}
* customer_locale:           The two or three-letter language code, optionally followed by a region modifier.
          Example values: <code>en</code>, <code>en-CA</code>.

  * Type: x-string
  * Example: "fr"
* device_id: The ID of the Shopify POS device that created the checkout. This field is <strong>deprecated</strong>.
  * Type: x-string
  * Example: 1
* discount_codes:           <p>
            Discount codes applied to the checkout. Returns an empty array when no codes are applied.
          </p>
            Each discount code has the following fields:
            <ul>
              <li><strong>amount</strong>: The amount of the discount in presentment currency.</li>
              <li><strong>code</strong>: The discount code.</li>
              <li><strong>type</strong>: The type of discount. Valid values: <code>percentage</code>, <code>shipping</code>, <code>fixed_amount</code>. (default: <code>fixed_amount</code>)</li>
            </ul>

  * Type: x-string
  * Example: [{"discount_code"=>{"id"=>507328175, "code"=>"WINTERSALE20OFF", "usage_count"=>0, "created_at"=>"2017-09-25T19:32:28-04:00", "updated_at"=>"2017-09-25T19:32:28-04:00"}}]
* email: The customer's email address.
  * Type: x-string
  * Example: "bob.norman@mail.example.com"
* gateway: The payment gateway used by the checkout. For abandoned checkouts, this value is always <code>null</code>.
  * Type: x-string
  * Example: "authorize_net"
* id: The ID for the checkout.
  * Type: x-string
  * Example: 450789469
* landing_site: The URL for the page where the customer entered the shop.
  * Type: x-string
  * Example: "http://www.example.com?source=abc"
* line_items:           A list of line items, each containing information about an item in the checkout. Each object has the following properties:
          <ul>
            <li><strong>fulfillment_service</strong>: The fulfillment service provider for the item. This field is <strong>deprecated</strong>.</li>
            <li><strong>fulfillment_status</strong>: The status of the item's fulfillment. Valid values: <code>fulfilled</code>, <code>null</code>, <code>partial</code>.</li>
            <li><strong>grams</strong>: The weight of the item in grams. This field is <strong>deprecated</strong>.</li>
            <li><strong>price</strong>: The price of the item in presentment currency.</li>
            <li><strong>product_id</strong>: The product ID od the item.</li>
            <li><strong>quantity</strong>: The number of products that were purchased.</li>
            <li><strong>requires_shipping</strong>: Whether the items requires shipping. This field is <strong>deprecated</strong>.</li>
            <li><strong>sku</strong>: A unique identifier for the item in the shop.</li>
            <li><strong>title</strong>: The title of the product.</li>
            <li><strong>variant_id</strong>: The product variant ID of item.</li>
            <li><strong>variant_title</strong>: The title of the product variant.</li>
            <li><strong>vendor</strong>: The name of the item's supplier.</li>
          </ul>

  * Type: x-string
  * Example: {"price"=>214.0, "product_id"=>431300801, "quantity"=>4, "sku"=>"SKU123", "title"=>"Jib", "variant_id"=>233402193, "variant_title"=>"Green", "vendor"=>"Ottawa Sail Shop"}
* location_id: The ID of the physical location where the checkout was processed.
  * Type: x-string
  * Example: 1
* note: The text of an optional note that a shop owner can attach to the order.
  * Type: x-string
  * Example: nil
* phone: The customer's phone number for receiving SMS notifications.
  * Type: x-string
  * Example: {"phone"=>"+13125551212"}
* presentment_currency: The three-letter code (<a href="https://en.wikipedia.org/wiki/ISO_4217">ISO 4217</a> format) of the currency that the customer used at checkout. For the shop's default currency, see <code>currency</code>.

  * Type: x-string
  * Example: {"presentment_currency"=>"USD"}
* referring_site: The website that referred the customer to the shop.
  * Type: x-string
  * Example: "http://www.anexample.com"
* shipping_address:           The mailing address where the order will be shipped to. It has the following properties:
          <ul>
            <li><strong>address1</strong>: The street address of the shipping address.</li>
            <li><strong>address2</strong>: An optional additional field for the street address of the shipping address.</li>
            <li><strong>city</strong>: The city of the shipping address.</li>
            <li><strong>company</strong>: The company of the person associated with the shipping address.</li>
            <li><strong>country</strong>: The name of the country of the shipping address.</li>
            <li><strong>country_code</strong>: The two-letter code (<a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO 3166-1 alpha-2</a> format) for the country of the shipping address.</li>
            <li><strong>first_name</strong>: The first name of the person associated with the shipping address.</li>
            <li><strong>last_name</strong>: The last name of the person associated with the shipping address.</li>
            <li><strong>latitude</strong>: The latitude of the shipping address.</li>
            <li><strong>longitude</strong>: The longitude of the shipping address.</li>
            <li><strong>name</strong>: The full name of the person associated with the shipping address.</li>
            <li><strong>phone</strong>: The phone number at the shipping address.</li>
            <li><strong>province</strong>: The name of the state or province of the shipping address.</li>
            <li><strong>province_code</strong>: The alphanumeric abbreviation of the state or province of the shipping address.</li>
            <li><strong>zip</strong>: The zip or postal code of the shipping address.</li>
          </ul>

  * Type: x-string
  * Example: {"address1"=>"Chestnut Street 92", "address2"=>"Apt 2", "city"=>"Louisville", "company"=>nil, "country"=>"United States", "first_name"=>"Bob", "last_name"=>"Norman", "latitude"=>"45.41634", "longitude"=>"-75.6868", "phone"=>"555-625-1199", "province"=>"Kentucky", "zip"=>"40202", "name"=>"Bob Norman", "country_code"=>"US", "province_code"=>"KY"}
* sms_marketing_phone: The phone number used to opt in to SMS marketing during checkout.
  * Type: x-string
  * Example: "+16135555555"
* shipping_lines:           Information about the chosen shipping method. It has the following properties:
            <ul>
              <li><strong>code</strong>: A reference to the shipping method.</li>
              <li><strong>price</strong>: The price of the shipping method in presentment currency.</li>
              <li><strong>source</strong>: The channel where the checkout originated. Example value: <code>shopify</code>.</li>
              <li><strong>title</strong>: The title of the shipping method. Example value: <code>International Shipping</code>.</li>
            </ul>

  * Type: x-string
  * Example: {"code"=>"Free Shipping", "price"=>"0.00", "source"=>"shopify", "title"=>"Free Shipping"}
* source_name: Where the checkout originated. Valid values: <code>web</code>, <code>pos</code>, <code>iphone</code>, <code>android</code>. This field is <strong>deprecated</strong>.
  * Type: x-string
  * Example: "web"
* subtotal_price: The price of the checkout in presentment currency before shipping and taxes.
  * Type: x-string
  * Example: "398.00"
* tax_lines:           An array of tax line objects, each of which details a tax applicable to the checkout. Each object has the following properties:
            <ul>
              <li><strong>price</strong>: The amount of tax to be charged in presentment currency.</li>
              <li><strong>rate</strong>: The rate of tax to be applied.</li>
              <li><strong>title</strong>: The name of the tax.</li>
              <li><strong>channel_liable</strong>: Whether the channel that submitted the tax line is liable for remitting. A value of <code>null</code> indicates unknown liability for the tax line.</li>
            </ul>

  * Type: x-string
  * Example: {"price"=>"11.94", "rate"=>0.06, "title"=>"State Tax", "channel_liable"=>true}
* taxes_included: Whether taxes are included in the price.
  * Type: x-string
  * Example: false
* token: A unique ID for a checkout.
  * Type: x-string
  * Example: "b1946ac92492d2347c6235b4d2611184"
* total_discounts: The total amount of discounts to be applied in presentment currency.
  * Type: x-string
  * Example: "0.00"
* total_duties: The total duties of the checkout in presentment currency.
  * Type: x-string
  * Example: "105.31"
* total_line_items_price: The sum of the prices of all line items in the checkout in presentment currency.
  * Type: x-string
  * Example: "398.00"
* total_price: The sum of line item prices, all discounts, shipping costs, and taxes for the checkout in presentment currency.
  * Type: x-string
  * Example: "409.94"
* total_tax: The sum of all the taxes applied to the checkout in presentment currency.
  * Type: x-string
  * Example: "11.94"
* total_weight: The sum of all the weights in grams of the line items in the checkout.
  * Type: x-string
  * Example: 400
* updated_at: The date and time (<a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format) when the checkout was last modified.
  * Type: x-string
  * Example: "2012-08-24T14:02:15-04:00"
* user_id: The ID of the user who created the checkout. This field is <strong>deprecated</strong>.
  * Type: x-string
  * Example: 1
## Retrieves a count of checkouts

Retrieves a count of checkouts from the past 90 days

### Endpoint
/admin/api/#{api_version}/checkouts.json?created_at_max=2013-10-12T07:05:27-02:00 (GET)

### Parameters
* api_version (required): 
* created_at_max: Count checkouts created before the specified date. (format: 2014-04-25T16:15:47-04:00)
* created_at_min: Count checkouts created after the specified date. (format: 2014-04-25T16:15:47-04:00)
* since_id: Restrict results to after the specified ID.
* status: Count checkouts with a given status.
* updated_at_max: Count checkouts last updated before the specified date. (format: 2014-04-25T16:15:47-04:00)
* updated_at_min: Count checkouts last updated after the specified date. (format: 2014-04-25T16:15:47-04:00)

### Responses
#### 200
Retrieves a count of checkouts

Examples:
##### Count abandoned checkouts created before date specified
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```
##### Count all abandoned checkouts
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```
##### Count closed abandoned checkouts
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```
## Retrieves a list of abandoned checkouts

Retrieves a list of abandoned checkouts.

### Endpoint
/admin/api/#{api_version}/checkouts.json?limit=1 (GET)

### Parameters
* api_version (required): 
* created_at_max: Show checkouts created before the specified date. (format: 2014-04-25T16:15:47-04:00)
* created_at_min: Show checkouts created after the specified date. (format: 2014-04-25T16:15:47-04:00)
* limit: The maximum number of results to show.
* since_id: Restrict results to after the specified ID.
* status: Show only checkouts with a given status.
* updated_at_max: Show checkouts last updated before the specified date. (format: 2014-04-25T16:15:47-04:00)
* updated_at_min: Show checkouts last updated after the specified date. (format: 2014-04-25T16:15:47-04:00)

### Responses
#### 200
Retrieves a list of abandoned checkouts

Examples:
##### Retrieve a limited number of abandoned checkouts
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```
##### Retrieve all abandoned checkouts
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```
##### Retrieve checkouts created before date specified
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```
##### Retrieve closed abandoned checkouts
Request:
```
GET /admin/api/unstable/checkouts.json
```

Response:
```
HTTP/1.1 200 OK
{"checkouts":[{"id":450789469,"token":"2a1ace52255252df566af0faaedfbfa7","cart_token":"68778783ad298f1c80c3bafcddeea02f","email":"bob.norman@mail.example.com","gateway":null,"buyer_accepts_marketing":false,"created_at":"2012-10-12T07:05:27-04:00","updated_at":"2012-10-12T07:05:27-04:00","landing_site":null,"note":null,"note_attributes":[{"name":"custom engraving","value":"Happy Birthday"},{"name":"colour","value":"green"}],"referring_site":null,"shipping_lines":[{"code":"Free Shipping","price":"0.00","original_shop_price":null,"original_rate_price":null,"original_shop_markup":null,"source":"shopify","title":"Free Shipping","presentment_title":null,"phone":null,"tax_lines":null,"custom_tax_lines":null,"markup":null,"delivery_category":null,"carrier_identifier":null,"carrier_service_id":null,"api_client_id":null,"requested_fulfillment_service_id":null,"applied_discounts":[],"delivery_option_group_type":null,"delivery_expectation_range":null,"delivery_expectation_type":null,"estimated_delivery_time_range":null,"id":"5da41c1738454765","validation_context":null}],"taxes_included":false,"total_weight":400,"currency":"USD","completed_at":null,"closed_at":null,"user_id":null,"location_id":null,"source_identifier":null,"source_url":null,"device_id":null,"phone":null,"customer_locale":"en","line_items":[{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"f32827a8d00b0a8d","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Red","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008RED","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":49148385,"variant_title":"Red","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"},{"applied_discounts":[],"discount_allocations":[{"id":null,"amount":"19.90","description":"TENOFF","created_at":null,"application_type":"discount_code","discount_class":"ORDER"}],"key":"7e8c529027b9a00e","destination_location_id":null,"fulfillment_service":"manual","gift_card":false,"grams":200,"origin_location_id":null,"presentment_title":"IPod Nano - 8GB","presentment_variant_title":"Pink","product_id":632910392,"properties":null,"quantity":1,"requires_shipping":true,"sku":"IPOD2008PINK","tax_lines":[],"taxable":true,"title":"IPod Nano - 8GB","variant_id":808950810,"variant_title":"Pink","variant_price":null,"vendor":"Apple","user_id":null,"unit_price_measurement":null,"rank":null,"compare_at_price":null,"line_price":"199.00","price":"199.00"}],"name":"#450789469","source":null,"abandoned_checkout_url":"https://checkout.local/548380009/checkouts/2a1ace52255252df566af0faaedfbfa7/recover","discount_codes":[{"code":"TENOFF","amount":"39.80","type":"percentage"}],"tax_lines":[{"price":"21.49","rate":0.06,"title":"State Tax","channel_liable":null}],"source_name":"web","presentment_currency":"USD","buyer_accepts_sms_marketing":false,"sms_marketing_phone":null,"total_discounts":"39.80","total_line_items_price":"398.00","total_price":"379.69","total_tax":"21.49","subtotal_price":"358.20","total_duties":null,"reservation_token":"0123456789abcdef0123456789zjkw","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"},"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"},"customer":{"id":207119551,"email":"bob.norman@mail.example.com","created_at":"2025-01-02T11:38:15-05:00","updated_at":"2025-01-02T11:38:15-05:00","first_name":"Bob","last_name":"Norman","state":"disabled","note":null,"verified_email":true,"multipass_identifier":null,"tax_exempt":false,"currency":"USD","phone":"+16136120707","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}}}]}
```