Skip to main content

NotificationResendTask

The object contains the parameters for Notification Resend Task. This background task will trigger re-send of web hook notifications by client specified criteria. Either one of the following mutually exclusive criterias are possible :

  • id - identifier of the task
  • eventType - transactions of specific type
  • startDate - start date of the period to re-send notifications for
  • endDate - end date of the period to re-send notifications for
  • merchantRefNum - notifications from Single merchantRefNum
  • status - status of the resend notifications task
  • customerIds - list of customer ids (requires startDate and endDate)
  • accountIds - list of account ids (requires startDate and endDate)
  • merchantRefNums - list of multiple merchant reference numbers
  • notificationsToResend - number of notifications to be re-sent
  • notificationsResent - number of notifications already re-sent
idstring

Server generated ID of the task.

Possible values: <= 20 characters

statusNotificationTaskStatus (string)

Status of the task.

Possible values: [SCHEDULED, IN_PROGRESS, FINISHED, FAILED, CANCELLED]

eventTypeNotificationEventType (string)required

Type of notification events that will be re-sent.

Possible values: [TRANSACTION, RESTRICTION, ACCOUNT, KYC, INSTRUMENT, SCREENING, CARD_STATUS_UPDATE, CARD_TOKENIZATION, CARD_TOKEN_UPDATE, THREE_D_SECURE, CARD_BULK_ORDER]

startDatedate-timerequired

Re-send notifications created during period specified by startDate and endDate properties. Further restrictions of the maximum period length may be enforced by the server.

endDatedate-timerequired

Re-send notifications created during period specified by startDate and endDate properties. Further restrictions of the maximum period length may be enforced by the server.

merchantRefNumstring

Re-send notifications associated to a merchant reference number.

Possible values: <= 50 characters

customerIdsstring[]

Re-send notifications associated to a list of customers.

Possible values: <= 1000

accountIdsstring[]

Re-send notifications associated to a list of accounts.

Possible values: <= 1000

merchantRefNumsstring[]

List of merchantRefNum

Possible values: <= 1000

notificationsToResendint64

Number of notifications to be re-sent.

notificationsResentint64

Number of notifications already re-sent.

NotificationResendTask
{
"id": "string",
"status": "SCHEDULED",
"eventType": "TRANSACTION",
"startDate": "2024-07-29T15:51:28.071Z",
"endDate": "2024-07-29T15:51:28.071Z",
"merchantRefNum": "string",
"customerIds": [
"string"
],
"accountIds": [
"string"
],
"merchantRefNums": [
"string"
],
"notificationsToResend": 0,
"notificationsResent": 0
}