Skip to main content
GET
/
v1
/
disputes
List
curl --request GET \
  --url https://{defaultHost}/v1/disputes \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/disputes"
  },
  "data": [
    {
      "id": "7b52594a-3cba-4d2e-8048-e94e9bcc3b31",
      "object": "dispute",
      "amount": 2900,
      "currency": "usd",
      "external_dispute_id": "dp_yf940wewkn3prr633jq6dwk4",
      "live_mode": true,
      "processor_type": "stripe",
      "status": "pending",
      "charge": "b551ff3c-a7ca-4765-bbbc-6f3504580423",
      "created_at": 1778010875,
      "updated_at": 1778010875
    }
  ]
}

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

charge_ids[]
string[]

Only return objects with the given charge IDs.

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.

page
integer

The page of items you want returned.

status[]
string[]

Only return objects with the given status.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.