Skip to main content
GET
/
v1
/
reports
/
contexts
/
{contextId}
/
dashboard
Get all dashboard aggregates
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/reports/contexts/{contextId}/dashboard \
  --header 'Authorization: Bearer <token>'
{
  "matchRate": {
    "matchRate": 123,
    "matchRateAmount": 123,
    "matchedCount": 123,
    "totalCount": 123,
    "unmatchedCount": 123
  },
  "sla": {
    "averageResolutionMs": 123,
    "pendingOverdue": 123,
    "pendingWithinSLA": 123,
    "resolvedLate": 123,
    "resolvedOnTime": 123,
    "slaComplianceRate": 123,
    "totalExceptions": 123
  },
  "updatedAt": "<string>",
  "volume": {
    "matchedAmount": "<string>",
    "matchedTransactions": 123,
    "periodEnd": "<string>",
    "periodStart": "<string>",
    "totalAmount": "<string>",
    "totalTransactions": 123,
    "unmatchedAmount": "<string>",
    "unmatchedCount": 123
  }
}

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
required

The unique identifier of the reconciliation context.

Query Parameters

date_from
string
required

Start date (YYYY-MM-DD)

date_to
string
required

End date (YYYY-MM-DD)

source_id
string

Source ID filter

Response

Indicates that the request was successful and the response contains the expected data.

matchRate
object
sla
object
updatedAt
string
volume
object