Skip to main content
GET
/
api
/
v1
/
business
/
disputes
List disputes for the authenticated merchant
curl --request GET \
  --url http://localhost:3001/api/v1/business/disputes \
  --header 'x-api-key: <x-api-key>'
{
  "success": true,
  "data": {
    "items": [
      {
        "paymentId": "<string>",
        "amount": 123,
        "currency": "<string>",
        "reason": "<string>",
        "status": "<string>",
        "openedAt": "<string>",
        "winScore": 123,
        "winScoreLabel": "<string>"
      }
    ],
    "counts": {
      "open": 123,
      "won": 123,
      "lost": 123
    },
    "meta": {}
  }
}

Headers

x-api-key
string
required

Query Parameters

status
string

open, won, lost

currency
string
from
string

ISO date filter start

to
string

ISO date filter end

page
number
limit
number

Response

OK

success
boolean
required
Example:

true

data
object
required