Parameters
1 query
Query parameters
· 1daysnumberOptionalNumber of days to analyze. Defaults to 30.
3030Returns bank transactions not matched to any order. Critical for cash recovery - identifies failed variable symbols, gateway issues, and import errors.
1 query
daysnumberOptionalNumber of days to analyze. Defaults to 30.
30301 status code documented
totalAmountnumberRequiredTotal value of unmatched transactions.
transactionCountnumberRequiredNumber of unmatched transactions.
agingBucketsobjectRequiredTransactions grouped by age.
todayobjectRequiredamountnumberRequiredAmount received today.
countnumberRequiredCount of transactions today.
thisWeekobjectRequiredamountnumberRequiredAmount received this week.
countnumberRequiredCount of transactions this week.
thisMonthobjectRequiredamountnumberRequiredAmount received this month.
countnumberRequiredCount of transactions this month.
olderobjectRequiredamountnumberRequiredAmount from older transactions.
countnumberRequiredCount of older transactions.
recentTransactionsobject[]RequiredRecent unmatched transactions (max 20).
idnumberRequiredTransaction ID.
bankTransactionIdstringRequiredBank transaction reference.
datestringRequiredTransaction date (YYYY-MM-DD).
amountnumberRequiredTransaction amount.
variableSymbolstringOptionalVariable symbol if present.
accountNamestringOptionalSender account name.
messagestringOptionalTransaction message.
currencystringRequiredCurrency code.
{
"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"
}GET /bff/dashboard/unmatched-payments
curl -X GET "https://api.bizkithub.com/bff/dashboard/unmatched-payments?days=30" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.