DocsAPI ReferenceDashboard/bff/dashboard/unmatched-payments
getDashboardAdmin BFF

/bff/dashboard/unmatched-payments

Returns bank transactions not matched to any order. Critical for cash recovery - identifies failed variable symbols, gateway issues, and import errors.

DashboardgetBffDashboardUnmatched-payments

Parameters

1 query

1 total
Query · 1
daysnumber

Number of days to analyze. Defaults to 30.

Default: 30

Request

GET /bff/dashboard/unmatched-payments

get
curl -X GET "https://api.bizkithub.com/bff/dashboard/unmatched-payments?days=30" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Unmatched payments analysis.

{
  "totalAmount": 0,
  "transactionCount": 0,
  "agingBuckets": {
    "today": {
      "amount": 0,
      "count": 0
    },
    "thisWeek": {
      "amount": 0,
      "count": 0
    },
    "thisMonth": {
      "amount": 0,
      "count": 0
    },
    "older": {
      "amount": 0,
      "count": 0
    }
  },
  "recentTransactions": [
    {
      "id": 0,
      "bankTransactionId": "example_bankTransactionId",
      "date": "example_date",
      "amount": 0,
      "variableSymbol": "example_variableSymbol",
      "accountName": "example_accountName",
      "message": "example_message"
    }
  ],
  "currency": "example_currency"
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key