Adyen · Schema

ReconciliationRequest

It conveys Information related to the Reconciliation requested by the Sale System. Content of the Reconciliation Request message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
ReconciliationType object
AcquirerID array
POIReconciliationID integer Absent if ReconciliationType is not PreviousReconciliation.
View JSON Schema on GitHub

JSON Schema

adyen-reconciliationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReconciliationRequest",
  "title": "ReconciliationRequest",
  "type": "object",
  "description": "It conveys Information related to the Reconciliation requested by the Sale System. Content of the Reconciliation Request message.",
  "properties": {
    "ReconciliationType": {
      "$ref": "#/components/schemas/ReconciliationType"
    },
    "AcquirerID": {
      "type": "array",
      "items": {
        "type": "integer",
        "description": "Could be present only if ReconciliationType is AcquirerReconciliation or AcquirerSynchronisation."
      }
    },
    "POIReconciliationID": {
      "type": "integer",
      "description": "Absent if ReconciliationType is not PreviousReconciliation."
    }
  },
  "required": [
    "ReconciliationType"
  ]
}