Abandoned Checkouts

Get Abandoned Checkouts

Retrieves a paginated list of abandoned checkouts.

get/v1/shops/{shopId}/abandoned-checkouts

Request body

pageinteger

Page number.

perPageinteger

Items per page, 1-100. Must be at least 1. Must not be greater than 100.

type'created' | 'pending' | 'all'
searchstring

Search by email. Must not be greater than 255 characters.

date_fromstring

Must be a valid date.

date_tostring

Must be a valid date. Must be a date after or equal to <code>date_from</code>.

include_dismissedboolean

Include dismissed checkouts.

Example request

{
  "page": 1
}

Response

current_pageinteger
first_page_urlstring
frominteger
last_pageinteger
last_page_urlstring
next_page_urlstring
pathstring
per_pageinteger
prev_page_urlstring
tointeger
totalinteger

Example response

{
  "current_page": 1,
  "data": [
    {
      "id": 3,
      "status": "created",
      "price": "14.99",
      "currency": "USD",
      "gateway": null,
      "payment_method_id": null,
      "email": "customer@sellauth.test",
      "salt": "31b900984628b",
      "created_at": "2026-09-04T21:06:20.000000Z",
      "shop_customer_id": 1,
      "abandoned_dismissed_at": null,
      "abandoned_recovery_sent_at": null,
      "unique_id": "31b900984628b-0000000000003",
      "customer": {
        "id": 1,
        "shop_id": 1,
        "email": "customer@sellauth.test",
        "discord_id": null,
        "discord_username": null
      },
      "items": [],
      "payment_method": null
    }
  ],
  "first_page_url": "http://api.sellauth.test/v1/shops/1/abandoned-checkouts?page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "http://api.sellauth.test/v1/shops/1/abandoned-checkouts?page=1",
  "links": [
    {
      "url": null,
      "label": "&laquo; Previous",
      "active": false
    },
    {
      "url": "http://api.sellauth.test/v1/shops/1/abandoned-checkouts?page=1",
      "label": "1",
      "active": true
    },
    {
      "url": null,
      "label": "Next &raquo;",
      "active": false
    }
  ],
  "next_page_url": null,
  "path": "http://api.sellauth.test/v1/shops/1/abandoned-checkouts",
  "per_page": 20,
  "prev_page_url": null,
  "to": 1,
  "total": 1
}

Changes

No recorded changes to this endpoint across all 2 revisions of this API.