Mastercard · Schema

TransactionIdentifier

Contains the a single or dual message transaction identifier values used for searching the respective transaction. Acquirer Reference Number, Banknet Reference Number, Trace Id and Serial Id values are captured.

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
acqRefNum string Contains Acquirer Reference Number for a transaction.
banknetRefNum string Contains Banknet Reference Number for a transaction.
traceId string Contains Trace Id for a transaction.
serialId string Contains Serial Id for a transaction.
View JSON Schema on GitHub

JSON Schema

mastercard-suspected-fraud-transaction-identifier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TransactionIdentifier",
  "type": "object",
  "description": "Contains the a single or dual message transaction identifier values used for searching the respective transaction. Acquirer Reference Number, Banknet Reference Number, Trace Id and Serial Id values are captured.",
  "properties": {
    "acqRefNum": {
      "type": "string",
      "description": "Contains Acquirer Reference Number for a transaction."
    },
    "banknetRefNum": {
      "type": "string",
      "description": "Contains Banknet Reference Number for a transaction."
    },
    "traceId": {
      "type": "string",
      "description": "Contains Trace Id  for a transaction."
    },
    "serialId": {
      "type": "string",
      "description": "Contains Serial Id for a transaction."
    }
  }
}