Skip to main content
GET
/
disputes
/
{dispute_id}
/
chargeback_data
Get chargeback eligibility data
curl --request GET \
  --url https://api.synctera.com/v1/disputes/{dispute_id}/chargeback_data \
  --header 'Authorization: Bearer <token>'
{
  "amount": 1000,
  "currency": "USD"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

dispute_id
string<uuid>
required

The unique identifier of the dispute

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"

Response

Returned chargeback data

amount
integer
required

The amount eligible for chargeback in cents.

Required range: x >= 0
Example:

1000

currency
string
required

ISO 4217 Alpha-3 currency code

Required string length: 3
Example:

"USD"