Match rate trends

GET /reports/match-rate-trends

Responses

  • 200 application/json

    The match rate trends (auto vs. manual matches) over the previous 12 months, excluding the current month.

    Hide response attributes Show response attributes object
    • year integer(int32)

      The year of the match date.

    • month integer(int32)

      The month of the match date.

    • manualCount integer(int64)

      The number of transactions matched manually during this time period.

    • autoCount integer(int64)

      The number of transactions matched automatically during this time period.

GET /reports/match-rate-trends
curl \
 --request GET 'https://usaapi02.cadencyservices.trintech.com/test/api/reports/match-rate-trends' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "year": 42,
    "month": 42,
    "manualCount": 42,
    "autoCount": 42
  }
]