Skip to main content
Matcher includes reporting tools to document reconciliation outcomes, monitor exceptions, and preserve audit evidence for compliance.

Available reports


  • Reconciliation summary: A high-level snapshot of match rates, exception volume, and total variances.
  • Match detail report: A complete list of matches, including transaction details, confidence scores, and variance breakdowns.
  • Exception report: A focused view of unresolved exceptions with aging, severity, and resolution status.
  • Audit trail report: A chronological record of reconciliation activity for investigation and compliance.
Use the reporting dashboard endpoints to access reconciliation metrics and export data.

Dashboard analytics


The reporting dashboard provides real-time reconciliation metrics for any context and date range.

Source breakdown

View reconciliation performance by source — including match rates, transaction counts, and unmatched amounts:
cURL
curl -X GET "https://api.matcher.example.com/v1/reports/contexts/{contextId}/dashboard/source-breakdown?date_from=2025-01-01&date_to=2025-01-31" \
 -H "Authorization: Bearer $TOKEN"
API Reference: Get source breakdown

Cash impact

Assess the total financial exposure from unmatched transactions, broken down by currency and age:
cURL
curl -X GET "https://api.matcher.example.com/v1/reports/contexts/{contextId}/dashboard/cash-impact?date_from=2025-01-01&date_to=2025-01-31" \
 -H "Authorization: Bearer $TOKEN"
The response includes byCurrency and byAge breakdowns to help prioritize resolution efforts.
API Reference: Get cash impact

Quick counts


Use count endpoints for lightweight status checks without fetching full result sets:
EndpointDescription
Count matchesTotal matched items in a date range
Count transactionsTotal transactions in a date range
Count exceptionsTotal exceptions in a date range
Count unmatchedTotal unmatched items in a date range
cURL
curl -X GET "https://api.matcher.example.com/v1/reports/contexts/{contextId}/matches/count?date_from=2025-01-01&date_to=2025-01-31" \
 -H "Authorization: Bearer $TOKEN"

Response

{
  "count": 1542
}

Best practices


Automate a daily summary report delivered each morning to keep stakeholders aligned.
Store reports in secure, durable storage. Financial artifacts often require multi-year retention.
Generate targeted reports by date, status, severity, or source—avoid exporting everything by default.
Include source names, rule names, and key identifiers so the output can stand alone outside Matcher.
Large reports can fail or stall. Track job status and alert on FAILED or prolonged GENERATING.

Next steps