Adyen · JSON Structure

Transfer Webhooks Bank Account V3 Structure

BankAccountV3 schema from Adyen API

Type: object Properties: 2 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

accountHolder accountIdentification

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/transfer-webhooks-bank-account-v3-structure.json",
  "description": "BankAccountV3 schema from Adyen API",
  "type": "object",
  "properties": {
    "accountHolder": {
      "description": "Information about the owner of the bank account.",
      "$ref": "#/components/schemas/PartyIdentification"
    },
    "accountIdentification": {
      "description": "Contains the bank account details. The fields required in this object depend on the country of the bank account and the currency of the transfer.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/AULocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/BRLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/CALocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/CZLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/DKLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/HKLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/HULocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/IbanAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/NOLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/NZLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/NumberAndBicAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/PLLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/SELocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/SGLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/UKLocalAccountIdentification"
        },
        {
          "$ref": "#/components/schemas/USLocalAccountIdentification"
        }
      ]
    }
  },
  "required": [
    "accountIdentification",
    "accountHolder"
  ],
  "name": "BankAccountV3"
}