Retrieve disputes status
You can request the status for a list of disputes by sending a POST request to the /disputes/status-query endpoint.
Important request fields
| Request field name | Description | Required | Location |
|---|---|---|---|
request-id |
Unique request identifier provided in the header by the requestor. | Y | Header |
statusInquiryParameters |
Any of:
|
Y | Body |
pageSize |
Maximum number of records that are 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 |
|---|---|
disputeStatus |
The label for the current stage of a case in the dispute resolution process. Allowed values:
|
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:
|
financialAdjustmentIndicator |
Indicates that a recent activity or a status change has a financial impact on your funded amount. Examples: a new dispute, issuer has reversed the chargeback, lost dispute, excess funds have been credited or debited, etc. This is reserved for future use. |
HTTP method: POST
Endpoint: /disputes/status-query
Scenario: Obtain the status for a list of disputes.
{
"statusInquiryParameters": {
"companyIds": [],
"merchantIds": [
997241028650
],
"disputeIds": [],
"startDateTime": "2025-01-01T00:00:00Z",
"endDateTime": "2025-09-09T12:00:00Z"
},
"pagination": {
"cursor": "",
"pageSize": 3
}
}Response:
{
"requestId": "7e9f510f-46f9-45d1-bff9-9db57e55c812",
"disputesStatusList": [
{
"disputeId": 83017,
"disputeStatus": "EXPIRED",
"statusUpdateTimestamp": "2025-09-08T07:00:23.032839Z",
"outcome": "NOT_FULFILLED",
"financialAdjustmentIndicator": false,
"isReversed": false,
"relatedFinancialItems": []
},
{
"disputeId": 83016,
"disputeStatus": "EXPIRED",
"statusUpdateTimestamp": "2025-09-08T07:00:23.023041Z",
"outcome": "NOT_FULFILLED",
"financialAdjustmentIndicator": false,
"isReversed": false,
"relatedFinancialItems": []
},
{
"disputeId": 83018,
"disputeStatus": "EXPIRED",
"statusUpdateTimestamp": "2025-09-08T07:00:23.016749Z",
"outcome": "NOT_FULFILLED",
"financialAdjustmentIndicator": false,
"isReversed": false,
"relatedFinancialItems": []
}
],
"traceId": "3bdf5042-ba5a-46e6-80eb-05b227859131",
"pagination": {
"cursor": "eyJjaWQiOltdLCJtaWQiOlsiOTk3MjQxMDI4NjUwIl0sInBnIjoyLCJjc2lkIjpbXSwibHQiOjMsInN1cyI6IjIwMjUtMDEtMDFUMDA6MDA6MDBaIiwic3VlIjoiMjAyNS0wOS0wOVQxMjowMDowMFoiLCJ0cGciOjI2fQ=="
}
}