Skip to content

Abandoned Checkouts

Joshua Harms edited this page Dec 20, 2023 · 1 revision

Abandoned Checkouts

This is used to return abandoned checkouts. A checkout is considered abandoned when a customer has entered their billing & shipping info, but has yet to complete the purchase.

Listing Abandoned Checkouts

var service = new CheckoutService(myShopifyUrl, shopAccessToken);
var checkouts = await service.ListAsync();

Count Abandoned Checkouts

var service = new CheckoutService(myShopifyUrl, shopAccessToken);
var count = await service.CountAsync();