Pular para o conteúdo principal
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>'
{
  "matchedCount": 123,
  "unmatchedCount": 123,
  "totalAmount": "<string>",
  "matchedAmount": "<string>",
  "unmatchedAmount": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt

Use this file to discover all available pages before exploring further.

Autorizações

Authorization
string
header
obrigatório

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

Cabeçalhos

X-Request-Id
string

A unique identifier for tracing the request across services.

Parâmetros de caminho

contextId
string<uuid>
obrigatório

The unique identifier of the reconciliation context.

Parâmetros de consulta

date_from
string<date>
obrigatório

Start date (YYYY-MM-DD)

date_to
string<date>
obrigatório

End date (YYYY-MM-DD)

source_id
string

Source ID filter

Resposta

Aggregated reconciliation summary

Aggregated reconciliation summary report

matchedCount
integer

Total number of matched transactions

unmatchedCount
integer

Total number of unmatched transactions

totalAmount
string

Total amount across all transactions

matchedAmount
string

Total amount of matched transactions

unmatchedAmount
string

Total amount of unmatched transactions