Get Disputes Statistics

This method returns statistics on disputes and deals within the specified date range. It includes details on the total number of deals, finished and canceled deals, dispute reasons, and the status of open, approved, and declined disputes.
Provide your bearer token in the Authorization header when making requests to protected resources. Example: Authorization: Bearer 123.

Query Params
date-time
required

Start date for the statistics period.

date-time
required

End date for the statistics period.

Headers
string
required

Bearer token for authenticating the request. Example: Authorization: Bearer 123.

Responses

{
  "total": 150,
  "finished": 100,
  "canceled": 20,
  "conversion": 0.67,
  "reasons": {
    "REDUCED": 10,
    "TRANSFERED": 15,
    "FAKE_RECEIPT": 5,
    "APPROVED": 50,
    "INVALID_CREDENTIALS": 10,
    "NOT_PAID": 30,
    "EXPIRED": 20,
    "DUPLICATE": 10
  },
  "disputes": {
    "opened": 20,
    "approved": 15,
    "declined": 5
  }
}

{
  "error": "ERROR_ACCESS_TOKEN_INVALID",
  "message": "Access token is invalid.",
  "statusCode": 400
}

{
  "error": "ERROR_TOKEN_EXPIRED",
  "message": "Access token has expired.",
  "statusCode": 401
}
Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json