Balance Exposure Threshold Exceeded
This notification is triggered when the exposure threshold is exceeded.
https://<customerHost:Port>/handlenotification
Header
Field | Description |
---|---|
Content-Type | application/json |
Request example
curl --location --request POST 'https://<customerHost:Port>/notifications' \
-H 'Content-Type: application/json' \
-d '{
"notificationType": "BALANCE_EXPOSURE_THRESHOLD_EXCEEDED",
"notificationCreationTime": "2025-05-16T12:37:51.066436Z",
"notificationContent": {
"balanceName": "Threshold Exceeded",
"balanceReference": "BAL998877",
"associatedCardsSpendExposure": "2000.00",
"currency": "EUR",
"actualBalance": "1500.00",
"availableBalance": "1000.00"
}
}'
Request Body
Field | Description | Type |
---|---|---|
notificationType | Specifies the type of notification being sent. | string required |
notificationCreationTime | Specifies the creation date and time for the notification. The date format conforms to ISO 8601 | string required |
notificationContent | Specifies the notification content | object required |
Properties of notificationContent
Field | Description | Type |
---|---|---|
balanceName | A user-friendly name for the Balance unique within the system. | string required |
balanceReference | The unique identifier of the Balance | string required |
associatedCardsSpendExposure | The total remaining spend limit across all active cards associated with this Balance. | |
currency | Specifies the currency of the deposit in ISO 4217 format. | string required |
actualBalance | The actual amount in the Balance. | string required |
availableBalance | The available amount in the Balance. | string required |