Get time saved

GET /reports/time-saved

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

    An estimate of the time saved by using Cadency Match to automatically match transactions, create cases, send emails, create exception items and create GL adjustments.

    Hide response attributes Show response attributes object
    • caseCount integer(int64)

      The number of Cases opened by SmartResolve during the period.

    • caseMinutesSaved integer(int64)

      The number of minutes saved by SmartResolve for Cases during the period.

    • emailCount integer(int64)

      The number of Emails sent by SmartResolve during the period.

    • emailMinutesSaved integer(int64)

      The number of minutes saved by SmartResolve for Emails during the period.

    • exceptionCount integer(int64)

      The number of Exceptions created by SmartResolve during the period.

    • exceptionMinutesSaved integer(int64)

      The number of minutes saved by SmartResolve for Exceptions during the period.

    • glAdjustmentCount integer(int64)

      The number of GL Adjustments created by SmartResolve during the period.

    • glAdjustmentMinutesSaved integer(int64)

      The number of minutes saved by SmartResolve for GL Adjustments during the period.

    • automatchCount integer(int64)

      The number of automatic matches during the period.

    • automatchMinutesSaved integer(int64)

      The number of minutes saved by SmartResolve for automatic matches during the period.

    • totalMinutesSaved integer(int64)

      Total time saved in minutes.

    • hoursSaved integer(int64)

      Total time saved in hours rounded down to nearest whole hour.

    • remainingMinutes integer(int64)

      Fraction of an hour remaining (totalMinutesSaved % 60)

GET /reports/time-saved
curl \
 --request GET 'https://usaapi02.cadencyservices.trintech.com/test/api/reports/time-saved' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "caseCount": 42,
  "caseMinutesSaved": 42,
  "emailCount": 42,
  "emailMinutesSaved": 42,
  "exceptionCount": 42,
  "exceptionMinutesSaved": 42,
  "glAdjustmentCount": 42,
  "glAdjustmentMinutesSaved": 42,
  "automatchCount": 42,
  "automatchMinutesSaved": 42,
  "totalMinutesSaved": 42,
  "hoursSaved": 42,
  "remainingMinutes": 42
}