Funding Account Limit Reached Notify
This notification is triggered when a funding account's balance reaches the predefined threshold (where applicable)
https://<customerHost:Port>/handlenotification
Header
Field | Description |
---|---|
Content-Type | application/json |
Request example
curl --location --request POST 'https://<customerHost:Port>/handlenotification' \
-H 'Content-Type: application/json' \
-d '{
"notificationType": "FUNDING_ACCOUNT_LIMIT_REACHED_NOTIFY",
"notificationCreationTime": "2025-03-07T15:10:52.457Z",
"notificationContent": {
"notificationKey": "D8CCR7aK5HMEBKYG",
"fundingAccountName": "FundingAccount_EUR",
"fundingAccountReference": "0UwInoaWR_IAIB2YTEarVVig-",
"currency": "EUR",
"availableBalance": "150.00",
"actualBalance": "150.00",
"creditLimit": "10.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 |
---|---|---|
notificationKey | Represents a unique identifier for Nium that confirms the API method call is genuine | string required |
fundingAccountName | Contains the funding account name | string required |
fundingAccountReference | Contains the funding account reference | string required |
currency | Represents the funding account currency | string required |
availableBalance | Contains the available balance of the funding account | string required |
actualBalance | Contains the actual balance of the funding account | string required |
creditLimit | Contains the total amount of credit that is allocated to the funding account. This applies only to accounts of type CREDIT | string |