Card Deleted Notify
This notification is triggered when a card is successfully deleted.
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": "CARD_DELETED_NOTIFY",
"notificationCreationTime": "2025-03-07T15:10:52.446Z",
"notificationContent": {
"notificationKey": "D8CCR7aK5HMEBKYG",
"cardReference": "0UwIg396z_EfegG1SeLQJLi1I",
"transferCurrency": "USD",
"transferAmount": "199.00",
"fundingAccountName": "FundingAccount_USD",
"fundingAccountReference": "0UwInoaWR_IAIB2YTEarVVig-"
}
}'
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 |
cardReference | Represents a unique identifier for the virtual card | string required |
transferCurrency | Represents the currency of the amount to be transferred from the virtual card if the virtual card has any remaining funds, in ISO 4217 format (e.g., USD) | string |
transferAmount | Contains the amount of remaining funds to be transferred from the virtual card, if any | string |
fundingAccountName | Represents the name of the funding account to which the remaining funds are to be transferred, if any | string |
fundingAccountReference | Represents the reference of the funding account to which the remaining funds are to be transferred, if any | string |