Skip to main content
GET
/
v1
/
reports
/
contexts
/
{contextId}
/
summary
Get reconciliation summary report
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/reports/contexts/{contextId}/summary \
  --header 'Authorization: Bearer <token>'
{
  "matched_count": 123,
  "unmatched_count": 123,
  "total_amount": "<string>",
  "matched_amount": "<string>",
  "unmatched_amount": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication (format: "Bearer {token}")

Headers

X-Request-Id
string

A unique identifier for tracing the request across services.

Path Parameters

contextId
string<uuid>
required

The unique identifier of the reconciliation context.

Query Parameters

date_from
string<date>
required

Start date (YYYY-MM-DD)

date_to
string<date>
required

End date (YYYY-MM-DD)

source_id
string

Source ID filter

Response

Aggregated reconciliation summary

Aggregated reconciliation summary report

matched_count
integer

Total number of matched transactions

unmatched_count
integer

Total number of unmatched transactions

total_amount
string

Total amount across all transactions

matched_amount
string

Total amount of matched transactions

unmatched_amount
string

Total amount of unmatched transactions