Skip to main content
GET
/
v1
/
abandoned_checkouts
List
curl --request GET \
  --url https://{defaultHost}/v1/abandoned_checkouts \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/abandoned_checkouts"
  },
  "data": [
    {
      "id": "e8cdf888-4749-4ef6-a370-54ea046ca169",
      "object": "abandoned_checkout",
      "notifications_enabled": true,
      "notification_status": "not_scheduled",
      "notifications_scheduled_at": [],
      "portal_url": "http://app.example.com/portal_redirect/abandoned_checkouts/e8cdf888-4749-4ef6-a370-54ea046ca169",
      "recovery_status": "abandoned",
      "recovered_at": null,
      "checkout": "3b1f986c-f3eb-4190-a5d0-8382064ee01a",
      "customer": "66fd7682-547e-4039-86d3-f02a47817b53",
      "promotion": null,
      "recovered_checkout": null,
      "created_at": 1767907549,
      "updated_at": 1767909649
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

customer_ids[]
string[]

Only return objects that belong to the given customers.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

live_mode
boolean

Only return objects that are live mode or test mode.

notification_status[]
string[]

Only return objects with the given notification_status.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.