...
Module | Publish/subscribe | Event type | Payload |
---|---|---|---|
mod-feesfines | publish | FF_BALANCE_CHANGE | { |
mod-circulation | publish | ITEM_CHECK_OUT | { |
mod-circulation | publish | ITEM_CHECK_IN | { |
mod-circulation | publish | ITEM_DECLARED_LOST | { |
mod-circulation | publish | LOAN_DUE_DATE_UPDATE | { |
mod-automatedblocks | subscribe | FF_BALANCE_CHANGE |
...
Code Block | ||
---|---|---|
| ||
{ "patronIduserId": string, "outstandingFeeFineBalance": numeric, "numberOfOpenFeesFinesForLostItems": numeric, "numberOfLostItems": numeric, "openLoans": [ { "loanId": string, "dueDate": string, "returnedDate": string, "recall": boolean } ], "openAccounts": [ { "accountId": string, "balance": numeric, "feeFineId": string } ] } |
...