Per-processor card-clearing sub-balances + aging of undeposited charges
Splits card money in transit by processor (per-brand till: 1004 ישראכרט, 1003 ויזה, …, 1099 unknown brand) and ages the undeposited charges by FIFO-walking each account's journal history. Also reports the EXPECTED (not yet deposited) installment pipeline.
Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.
In: header
Query Parameters
Age against this date (default: today, Israel time)
Include processors with no activity
Response Body
application/json
curl -X GET "https://example.com/card-clearing/processors"{ "asOfDate": "2026-07-25", "processors": [ { "accountCode": "1004", "accountName": "קופת ישראכרט", "creditCompanyCode": 1, "processorLabel": "Isracard", "totalCharged": 3540, "totalSettled": 2360, "undepositedBalance": 1180, "undepositedCount": 1, "oldestChargeDate": "2026-07-01", "oldestChargeAgeDays": 24, "aging": [ { "bucket": "8-14", "fromDays": 8, "toDays": 14, "amount": 3540, "count": 3 } ], "expectedInstallmentAmount": 2360, "expectedInstallmentCount": 2, "overdueInstallmentCount": 1 } ], "totalUndeposited": 1180, "totalExpectedInstallments": 2360}
