Adyen · Schema
PaymentAcquirerData
Data related to the response from the payment Acquirer.
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| AcquirerID | integer | If several Acquirers. |
| MerchantID | string | Identification of the Merchant for the Acquirer. |
| AcquirerPOIID | string | Identification of the POI for the payment Acquirer. |
| AcquirerTransactionID | object | |
| ApprovalCode | string | If available. |
| HostReconciliationID | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaymentAcquirerData",
"title": "PaymentAcquirerData",
"type": "object",
"description": "Data related to the response from the payment Acquirer.",
"properties": {
"AcquirerID": {
"type": "integer",
"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"
]
}