Returns a summary of unmatched transactions grouped by their age in days.

GET /reports/aging-unmatched-transactions

Returns a summary of unmatched transactions grouped by their age in days. Each group includes the count and total amount of unmatched transactions within that age range. By default, the report covers the previous twelve months, not including the current month. The age groups are predefined as follows:

  • 0-30 days
  • 31-60 days
  • 61-90 days
  • 91-120 days
  • 121-180 days
  • Over 180 days

Query parameters

  • startDate string(date-time)

    An optional start date of the report. If not specified, defaults to the first of the month, twelve months ago. If specified, end date is required and must be after the start date. For accuracy of reports which summarize by month, the start date should be the first day of the month. The range is inclusive of this date. Must be in ISO 8601 compliant format yyyy-MM-dd (for April first: 2025-04-01).

  • endDate string(date-time)

    An optional end date of the report. If not specified, defaults to the first day of the current month. If specified, start date is required and must be before the end date. For accuracy of reports which summarize by month, the end date should be the first day of the month after the last month in the report.
    The range is *EX*clusive of this date. Must be in ISO 8601 compliant format yyyy-MM-dd (for April first: 2025-04-01).

Responses

  • 200 application/json

    the unmatched transactions grouped by age.

    Hide response attributes Show response attributes object
    • name string

      The user-friendly label for this aging group.

    • lowerBound integer(int32)

      The inclusive lower bound in days for this aging group.

    • upperBound integer(int32)

      The inclusive upper bound in days for this aging group.

    • count integer(int64)

      The total number of transactions in this aging group.

    • amount number

      The total (unsigned) value of transactions in this aging group.

GET /reports/aging-unmatched-transactions
curl \
 --request GET 'https://usaapi02.cadencyservices.trintech.com/test/api/reports/aging-unmatched-transactions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "name": "string",
    "lowerBound": 42,
    "upperBound": 42,
    "count": 42,
    "amount": 42.0
  }
]