Adyen · Schema

ReconciliationResponse

It conveys Information related to the Reconciliation transaction processed by the POI System. Content of the Reconciliation Response message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
Response object
ReconciliationType object
POIReconciliationID integer Absent if ReconciliationType is AcquirerReconciliation.
TransactionTotals array
View JSON Schema on GitHub

JSON Schema

terminal-reconciliation-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-reconciliation-response-schema.json",
  "title": "ReconciliationResponse",
  "description": "It conveys Information related to the Reconciliation transaction processed by the POI System. Content of the Reconciliation Response message.",
  "type": "object",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "ReconciliationType": {
      "$ref": "#/components/schemas/ReconciliationType"
    },
    "POIReconciliationID": {
      "type": "integer",
      "description": "Absent if ReconciliationType is AcquirerReconciliation."
    },
    "TransactionTotals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TransactionTotals"
      }
    }
  },
  "required": [
    "Response",
    "ReconciliationType"
  ]
}