# 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 ## Servers - https://usaapi02.cadencyservices.trintech.com/test/api: https://usaapi02.cadencyservices.trintech.com/test/api () ## Authentication methods - Oauth2 ## Parameters ### 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 the unmatched transactions grouped by age. #### Body: application/json (array[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. [Powered by Bump.sh](https://bump.sh)