Card Delete Batch Complete Notify
This notification is triggered upon completion of the card deletion batch process.
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_DELETE_BATCH_COMPLETE_NOTIFY",
"notificationCreationTime": "2025-03-07T15:10:52.443Z",
"notificationContent": {
"notificationKey": "D8CCR7aK5HMEBKYG",
"batchReference": "my-reference",
"numberOfDeletedCards": "25"
}
}'
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 |
batchReference | Contains a unique identifier for the batch of cards that have just been deleted | string required |
numberOfDeletedCards | Represents the number of cards deleted as part of this batch | string required |