FieldTypeDescription
numberOfElementsIntegerTotal number of elements in the response.
pageIntegerCurrent page number for this response.
hasNextBooleanIf it has a next page (true) or not (false).
contentArray[Object]Content to the respective request.
content[].idStringThe 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.
content[].receptionDateStringThe 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.
content[].currencyStringThe currency for this Fraud Alert and the associated Transaction.

Format: ISO 4217 currency alpha code. Example: BRL or MXN.
content[].lastUpdateDateStringLast 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.
content[].statusStringThe current status of this Fraud Alert.

Must be one of [NEW, REFUNDED, CHARGEBACKED, PARTIALLY_REFUNDED].
content[].merchantObjectMerchant information related to this Fraud Alert.
content[].merchant.nameStringThe merchant name.
content[].merchant.transactionIdStringThe transactionId provided by the Merchant when creating the original transaction.
content[].transactionObjectInformation about about the transaction which this Fraud Alert refers to.
content[].transaction.uuidStringUnique Id of corresponding sale transaction on PPRO.
content[].transaction.dateStringDate 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.
content[].transaction.cardNumberStringMasked 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.
content[].transaction.brandStringCard brand.
content[].transaction.amountDecimalTransaction amount in the specified currency.

Must have at most 16 integral digits and 2 fractional digits.
content[].statusesArray[Object]The history of status changes for this Fraud Alert.
content[].statuses[].statusStringThe value that the status was updated to.

Must be one of [NEW, REFUNDED, CHARGEBACKED, PARTIALLY_REFUNDED].
content[].statuses[].dateStringThe 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:

{
  "content" : [ {
    "id" : "d0e3a869-2943-4c33-8202-0a31775c87fa",
    "receptionDate" : "2021-08-05T03:03:03",
    "currency" : "BRL",
    "lastUpdateDate" : "2022-03-01T01:01:01",
    "status" : "REFUNDED",
    "merchant" : {
      "name" : "Example Merchant",
      "transactionId" : null
    },
    "transaction" : {
      "uuid" : "d0e3a869-2943-4c33-8202-0a31775c87fa",
      "date" : null,
      "cardNumber" : null,
      "brand" : "VISA",
      "amount" : null
    },
    "statuses" : [ {
      "status" : "NEW",
      "date" : "2022-03-01T00:01:01"
    }, {
      "status" : "REFUNDED",
      "date" : "2022-03-01T01:01:01"
    } ]
  } ],
  "number" : 0,
  "hasNext" : false,
  "numberOfElements" : 1,
  "size" : 500
}