Skip to main content

Balance Funds Deposited

This notification is triggered on Balance Funds Deposit.

https://<customerHost:Port>/handlenotification
FieldDescription
Content-Typeapplication/json

Request example

curl --location --request POST 'https://<customerHost:Port>/notifications' \
-H 'Content-Type: application/json' \
-d '{
"notificationType": "BALANCE_FUNDS_DEPOSITED",
"notificationCreationTime": "2025-05-16T12:37:51.066436Z",
"notificationContent": {
"balanceName": "Test Balance",
"balanceReference": "BAL123456",
"amount": "100.00",
"transactionReference": "TXN123456",
"currency": "EUR",
"actualBalance": "1000.00",
"availableBalance": "950.00"
}
}'

Request Body

FieldDescriptionType
notificationTypeSpecifies the type of notification being sent.string
required
notificationCreationTimeSpecifies the creation date and time for the notification. The date format conforms to ISO 8601string
required
notificationContentSpecifies the notification contentobject
required

Properties of notificationContent

FieldDescriptionType
balanceNameA user-friendly name for the Balance unique within the system.string
required
balanceReferenceThe unique identifier of the Balancestring
required
amountThe amount of funds to be deposited.string
required
currencySpecifies the currency of the deposit in ISO 4217 format.string
required
availableBalanceThe available amount in the Balance.string
required
actualBalanceThe actual amount in the Balance.string
required
transactionReferenceUnique identifier for the transaction.string
required