Skip to main content
GET
/
v1
/
disputes
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/disputes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "33ad7269-85b1-40df-b30d-345a4515c305",
  "object": "dispute",
  "amount": 2900,
  "currency": "usd",
  "external_dispute_id": "dp_e31g891vjcsst0pz4o6x0mm0",
  "live_mode": true,
  "processor_type": "stripe",
  "status": "pending",
  "charge": "fa4d307f-7f84-4675-a4e8-62fce1e5b86d",
  "created_at": 1771429864,
  "updated_at": 1771429864
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

amount
integer

The amount in cents that is disputed, represented as a whole integer. For example 9900 is equivalent to $99.

currency
string

Three-letter ISO currency code, in lowercase.

external_dispute_id
string

The external processor ID representing this dispute.

live_mode
boolean

Set to true if this dispute is in live mode, and set to false if it is in test mode.

processor_type
string

The type of associated processor – one of mock, mollie, paypal, paystack, or stripe.

status
string

The current status of this dispute, which can be one of pending, won, or lost.

charge

Expandable – The associated charge ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.