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": "99c97a1b-2d23-4a0d-a2cd-6f73190d2c2b",
      "object": "abandoned_checkout",
      "notifications_enabled": true,
      "notification_status": "not_scheduled",
      "notifications_scheduled_at": [],
      "portal_url": "http://app.example.com/portal_redirect/abandoned_checkouts/99c97a1b-2d23-4a0d-a2cd-6f73190d2c2b",
      "recovery_status": "abandoned",
      "recovered_at": null,
      "checkout": "3d790e22-042d-47e1-80b6-a85d12633ead",
      "customer": "9c2c3f6c-9827-46f3-8bb9-ca64b9b0811f",
      "promotion": null,
      "recovered_checkout": null,
      "created_at": 1778008750,
      "updated_at": 1778010850
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.surecart.com/llms.txt

Use this file to discover all available pages before exploring further.

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.