Get chargebacks
Retrieve the details of all your Chargebacks in a given time.
Authorizations
Query parameters
fromintegerOptional
Transaction creation date interval in UnixTimeStamp format.
tointegerOptional
Transaction creation date interval in Unix TimeStamp format - max difference with 'from' value 60 days.
pageintegerOptionalDefault:
The page number.
0
countrystring · max: 2Optional
Country code.
statusstring · enumOptionalPossible values:
Transaction status.
Responses
200
A paginated list of chargebacks.
application/json
Responseall of
get
GET /v1/chargebacks HTTP/1.1
Host: merchants-api.directa24.com
Authorization: Bearer JWT
Accept: */*
200
A paginated list of chargebacks.
{
"data": [
{
"idChargeback": 366,
"creationDate": "2024-03-13T14:37:02Z",
"lastChangeDate": "2024-03-13T14:37:02Z",
"idMerchant": 4,
"inMediation": false,
"idDeposit": 301188268,
"amount": 42,
"merchantAmount": 7.67,
"merchantCurrency": "USD",
"merchantName": "Merchant Test",
"country": "BR",
"countryName": "Brazil",
"status": "COMPLETED",
"notified": false,
"currency": "BRL",
"externalId": "4-2179022216374204045",
"comments": "dsfsd"
}
],
"page": 0,
"rows": 1,
"maxRows": 50
}
Last updated
Was this helpful?