Create Alert Response

FieldTypeDescription
idString

The unique identifier for the Fraud Alert.

Note: This sometimes may be the same as the transaction.uuid field. But that’s not a guarantee, so treat the values as being semantically different.

receptionDateString

The date and time when Fraud Alert was created by the acquirer. UTC Timezone.

Format: ISO 8601 date without timezone.
Example: 2022-07-13T10:12:05.

Format: Date year field must be positive and not zero. Example: 2022-01-01T00:00:00.

currencyString

The currency for this Fraud Alert and the associated Transaction.

Format: ISO 4217 currency alpha code. Example: BRL or MXN.

lastUpdateDateString

Last time this Fraud Alert was updated.

Format: ISO 8601 date without timezone.
Example: 2022-07-13T10:12:05.

Format: Date year field must be positive and not zero. Example: 2022-01-01T00:00:00.

statusString

The current status of this Fraud Alert.

Must be one of 1": "Type",
"h-2": "Description",
"0-0": "id",
.

merchantObjectMerchant information related to this Fraud Alert.
merchant.nameStringThe merchant name.
merchant.transactionIdStringThe transactionId provided by the Merchant when creating the original transaction.
transactionObjectInformation about about the transaction to which this Fraud Alert refers.
transaction.uuidStringUnique Id of corresponding sale transaction on PPRO.
transaction.dateString

Date that transaction was processed. UTC Timezone.

Format: ISO 8601 datetime without timezone.

Format: Date year field must be positive and not zero.
Example: 2022-01-01T00:00:00.

transaction.cardNumberString

Masked card number.

Format: 6 or 8 digits card BIN followed by 6 asterisks then the card number’s last 4 digits.

Example: 123456******1234 or 12345678******1234.

transaction.brandStringCard brand.
transaction.amountDecimal

Transaction amount in the specified currency.

Must have at most 16 integral digits and 2 fractional digits.

statusesArrayk:parameThe history of status changes for this Fraud Alert.
statuses[].statusString

The value that the status was updated to.

Must be one of : "Type",
"h-2": "Description",
"0-0": "id",
.

statuses[].dateString

The date and time when the status was updated.

Format: ISO 8601 date without timezone.
Example: 2022-07-13T10:12:05.

Format: Date year field must be positive and not zero. Example: 2022-01-01T00:00:00.

Example:

{
  "id" : "9da80a3d-8b38-49f1-922d-4c7871694a75",
  "receptionDate" : "2032-01-05T03:03:03",
  "currency" : "BRL",
  "lastUpdateDate" : "2032-01-05T03:03:03",
  "status" : "NEW",
  "merchant" : {
    "name" : "Example Merchant",
    "transactionId" : null
  },
  "transaction" : {
    "uuid" : "9da80a3d-8b38-49f1-922d-4c7871694a75",
    "date" : "2031-12-26T03:03:03",
    "cardNumber" : "123456******1234",
    "brand" : "MASTER",
    "amount" : 199.99
  },
  "statuses" : [ {
    "status" : "NEW",
    "date" : "2032-01-05T03:03:03"
  } ]
}