Retrieve disputes
You can retrieve a list of disputes, including chargebacks and retrieval requests, by sending a POST request to the /disputes endpoint.
To select a return of a more specific list of disputes in your retrieve disputes response, you can:
- Use any of the following listed fields in your request as filters to restrict the list of disputes you retrieve.
- Define the period you want to retrieve disputes for, using any of the date range fields. If no date range is specified, all disputes created within the last 90 days is returned.
- Use pagination to limit the number of disputes returned. Indicate the number of records you want to retrieve per page. To navigate to next pages, send the subsequent requests using the same filter option as the original request. Also include the cursor field and value from the previous request response in your new request.
Important request fields
| Request field name | Description | Required | Location |
|---|---|---|---|
request-id |
Unique request identifier provided by the requestor in the header. | Y | Header |
entityIds |
Any one of the following:
|
Y | Body |
disputeTypes |
A list of labels representing the type or categories of disputes. Allowed values:
|
N | Body |
disputeStatuses |
A list of dispute status filters to apply when querying disputes. Allowed values:
|
N | Body |
initiatedStartDate |
Indicates the date on which the dispute case record was created in the Issuer system. This serves as the start date of the range. If this date, along with disputeReceivedStartDate and disputeReceivedEndDate, is not provided, it defaults to 90 days prior to the current date. |
N | Body |
initiatedEndDate |
Indicates the date on which the dispute case record was created in the Issuer system. This serves as the end date of the range. If this date, along with disputeReceivedStartDate and disputeReceivedEndDate, is not provided, it defaults to the current date. |
N | Body |
disputeReceivedStartDate |
Indicates the date on which the dispute case record was created in our system. This serves as the start date of the range. If this date is provided, the initiatedDate range will not default to any other value. |
N | Body |
disputeReceivedEndDate |
Indicates the date on which the dispute case record was created in our system. This serves as the end date of the range. If this date is provided, the initiatedDate range will not default to any other value. |
N | Body |
pageSize |
Maximum number of records that is returned as the output for the requested page in the paginated response. | N | Body |
cursor |
Indicates the starting point for the next set of data on the paginated response. When you make a request to the API and receive a response with a next page cursor, you can use that cursor in a subsequent request to retrieve the next page of results. | N | Body |
Important response fields
| Response field name | Description |
|---|---|
disputeId |
A unique identifier provided by us. |
disputeCategoryCode |
The category of the dispute based on the reason code. Allowed values:
|
issuerDocumentCode |
If this is set to 1, expect an issuer document arrival in the next few days, depending on the payment brand. You can check the issuer document availability using our documents API endpoint. Allowed values:
|
responseDueDate |
Due date before which you can challenge the dispute in YYYY-MM-DD format. |
outcome |
The outcome of a dispute. For chargebacks, this indicates the financial outcome for you after the dispute is solved. For retrieval requests, this indicates whether the request has been fulfilled or not. Allowed values:
|
HTTP method: POST
Endpoint: /disputes
Scenario: Obtain a list of disputes, for FIRST_CHARGEBACK disputeTypes with the disputeStatuses of NEW. Note that the pageSize is set to 2 and so, any records past this will be shown on a subsequent request using the cursor from the response.
{
"entityIds": {
"companyIds": [],
"merchantIds": [
999150844140,
997241028650
]
},
"disputeTypes": ["FIRST_CHARGEBACK"],
"disputeStatuses": ["NEW"],
"initiatedStartDate": "2025-01-01",
"initiatedEndDate": "2025-09-09",
"disputeReceivedStartDate": "2025-01-01",
"disputeReceivedEndDate": "2025-09-09",
"pagination": {
"cursor": "",
"pageSize": 2
}
}Response:
{
"requestId": "c0fde091-521c-41d1-a6b0-dfe8dadc52e3",
"disputes": [
{
"disputeType": "FIRST_CHARGEBACK",
"disputeId": 83015,
"acquirerReferenceNumber": "24692165195100806126881",
"disputeInitiatedDate": "2025-08-11",
"disputeReceivedDate": "2025-08-11",
"responseDueDate": "2025-08-29",
"disputeValue": {
"amount": 22,
"currencyCode": "USD"
},
"disputeReason": {
"reasonCode": "10.2",
"reason": "EMV Liability Shift – Non-Counterfeit Fraud"
},
"disputeCategoryCode": "FRAUD",
"disputeStatus": "NEW",
"statusUpdateTimestamp": "2025-08-11T16:02:43Z",
"outcome": "PENDING",
"paymentMethod": {
"paymentMethodCode": "VI",
"paymentMethodName": "Visa",
"maskedAccountNumber": "411234XXXXXX4113"
},
"authorizationData": {
"authorizationTimestamp": "2025-07-14T00:00:00Z"
},
"transactionData": {
"merchantOrderNumber": "Hh2iQThrIK6K8VGCp5oJGO",
"transactionTimestamp": "2025-07-14T00:00:00Z",
"transactionAmount": 22,
"transactionCurrency": "USD"
},
"merchantData": {
"companyId": "25887313631",
"merchantId": "997241028650",
"companyName": "Barker Mobility Equipments",
"merchantName": "LA-US Safetech Fraud"
}
},
{
"disputeType": "FIRST_CHARGEBACK",
"disputeId": 83020,
"acquirerReferenceNumber": "74313305190100801793033",
"disputeInitiatedDate": "2025-08-11",
"disputeReceivedDate": "2025-08-11",
"responseDueDate": "2025-08-29",
"disputeValue": {
"amount": 20,
"currencyCode": "EUR"
},
"disputeReason": {
"reasonCode": "10.2",
"reason": "EMV Liability Shift – Non-Counterfeit Fraud"
},
"disputeCategoryCode": "FRAUD",
"disputeStatus": "NEW",
"statusUpdateTimestamp": "2025-08-11T16:02:43Z",
"outcome": "PENDING",
"paymentMethod": {
"paymentMethodCode": "VI",
"paymentMethodName": "Visa",
"maskedAccountNumber": "400552XXXXXX0008"
},
"authorizationData": {
"authorizationTimestamp": "2025-07-09T00:00:00Z"
},
"transactionData": {
"merchantOrderNumber": "2jEAx26QkZ7DaKSCb4Lso8",
"transactionTimestamp": "2025-07-09T00:00:00Z",
"transactionAmount": 20,
"transactionCurrency": "EUR"
},
"merchantData": {
"companyId": "999150844140",
"merchantId": "999150844140",
"companyName": "Shipping stratus3 LLC",
"merchantName": "Shipping stratus3 LLC"
}
}
],
"pagination": {
"cursor": "eyJjaWQiOltdLCJtaWQiOlsiOTk5MTUwODQ0MTQwIiwiOTk3MjQxMDI4NjUwIl0sInBnIjoyLCJsdCI6MiwiZHQiOlsiRklSU1RfQ0hBUkdFQkFDSyJdLCJzdCI6WyJORVciXSwiaWRzIjoiMjAyNS0wMS0wMSIsImlkZSI6IjIwMjUtMDktMDkiLCJ0cGciOjMsInJzZHQiOiIyMDI1LTAxLTAxIiwicmVkdCI6IjIwMjUtMDktMDkifQ=="
},
"traceId": "8ba1067b-629a-41a7-ba93-404348bb2d6e"
}Scenario: Building upon the previous scenario, we can use the cursor returned from the response to retrieve the remaining record(s).
{
"entityIds": {
"companyIds": [],
"merchantIds": [
999150844140,
997241028650
]
},
"disputeTypes": ["FIRST_CHARGEBACK"],
"disputeStatuses": ["NEW"],
"initiatedStartDate": "2025-01-01",
"initiatedEndDate": "2025-09-09",
"disputeReceivedStartDate": "2025-01-01",
"disputeReceivedEndDate": "2025-09-09",
"pagination": {
"cursor": "eyJjaWQiOltdLCJtaWQiOlsiOTk5MTUwODQ0MTQwIiwiOTk3MjQxMDI4NjUwIl0sInBnIjoyLCJsdCI6MiwiZHQiOlsiRklSU1RfQ0hBUkdFQkFDSyJdLCJzdCI6WyJORVciXSwiaWRzIjoiMjAyNS0wMS0wMSIsImlkZSI6IjIwMjUtMDktMDkiLCJ0cGciOjMsInJzZHQiOiIyMDI1LTAxLTAxIiwicmVkdCI6IjIwMjUtMDktMDkifQ==",
"pageSize": 2
}
}Response:
{
"requestId": "d3a738d4-6bd7-4f19-b4bf-f9bc349e5b23",
"disputes": [
{
"disputeType": "FIRST_CHARGEBACK",
"disputeId": 83021,
"acquirerReferenceNumber": "74313305190100801793025",
"disputeInitiatedDate": "2025-08-11",
"disputeReceivedDate": "2025-08-11",
"responseDueDate": "2025-09-04",
"disputeValue": {
"amount": 22,
"currencyCode": "EUR"
},
"disputeReason": {
"reasonCode": "13.6",
"reason": "Credit Not Processed"
},
"disputeCategoryCode": "CONSUMER_DISPUTE",
"disputeStatus": "NEW",
"statusUpdateTimestamp": "2025-08-11T16:02:43Z",
"paymentMethod": {
"paymentMethodCode": "VI",
"paymentMethodName": "Visa",
"maskedAccountNumber": "400552XXXXXX0008"
},
"authorizationData": {
"authorizationTimestamp": "2025-07-09T00:00:00Z"
},
"transactionData": {
"merchantOrderNumber": "H1ymfZn3luhvKAQKqYt2cW",
"transactionTimestamp": "2025-07-09T00:00:00Z",
"transactionAmount": 22,
"transactionCurrency": "EUR"
},
"merchantData": {
"companyId": "999150844140",
"merchantId": "999150844140",
"companyName": "Shipping stratus3 LLC",
"merchantName": "Shipping stratus3 LLC"
}
}
],
"pagination": {
"cursor": "eyJjaWQiOltdLCJtaWQiOlsiOTk5MTUwODQ0MTQwIiwiOTk3MjQxMDI4NjUwIl0sInBnIjozLCJsdCI6MiwiZHQiOlsiRklSU1RfQ0hBUkdFQkFDSyJdLCJzdCI6WyJORVciXSwiaWRzIjoiMjAyNS0wMS0wMSIsImlkZSI6IjIwMjUtMDktMDkiLCJ0cGciOjMsInJzZHQiOiIyMDI1LTAxLTAxIiwicmVkdCI6IjIwMjUtMDktMDkifQ=="
},
"traceId": "c5643234-7be9-44ee-ab11-4612562811b8"
}