Adyen · Schema

BankAccountInfo

BankAccountInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
address object The address of the bank account owner.
iban string The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
ownerName object The name of the bank account owner.
View JSON Schema on GitHub

JSON Schema

notification-webhooks-bank-account-info-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/notification-webhooks-bank-account-info-schema.json",
  "title": "BankAccountInfo",
  "description": "BankAccountInfo schema from Adyen API",
  "properties": {
    "address": {
      "description": "The address of the bank account owner.",
      "$ref": "#/components/schemas/Address"
    },
    "iban": {
      "description": "The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.",
      "type": "string"
    },
    "ownerName": {
      "description": "The name of the bank account owner.",
      "$ref": "#/components/schemas/Name-2"
    }
  },
  "type": "object"
}