Adyen · JSON Structure

Terminal Payment Acquirer Data Structure

Data related to the response from the payment Acquirer.

Type: object Properties: 6 Required: 2
PaymentsFinancial ServicesFintech

PaymentAcquirerData is a JSON Structure definition published by Adyen, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AcquirerID MerchantID AcquirerPOIID AcquirerTransactionID ApprovalCode HostReconciliationID

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-payment-acquirer-data-structure.json",
  "description": "Data related to the response from the payment Acquirer.",
  "type": "object",
  "properties": {
    "AcquirerID": {
      "type": "int32",
      "description": "If several Acquirers."
    },
    "MerchantID": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Identification of the Merchant for the Acquirer."
    },
    "AcquirerPOIID": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Identification of the POI for the payment Acquirer."
    },
    "AcquirerTransactionID": {
      "$ref": "#/components/schemas/TransactionIDType"
    },
    "ApprovalCode": {
      "type": "string",
      "pattern": "^.+$",
      "description": "If available."
    },
    "HostReconciliationID": {
      "type": "string",
      "pattern": "^.+$"
    }
  },
  "required": [
    "MerchantID",
    "AcquirerPOIID"
  ],
  "name": "PaymentAcquirerData"
}