Adyen · Schema

AchNotificationOfChangeNotificationRequestDataNoc

PaymentsFinancial ServicesFintech

Properties

Name Type Description
newBankAccountNumber string New bank account number.
newBankAccountType string New bank account type. Possible values: * **Savings** * **Checking**
newBranchCode string New branch code.
reasonCode string Notification of Change reason code. Possible values: * **C01** : Incorrect bank account number. * **C02** : Incorrect transit/routing number. * **C03** : Incorrect transit/routing number and bank acco
View JSON Schema on GitHub

JSON Schema

adyen-achnotificationofchangenotificationrequestdatanoc-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AchNotificationOfChangeNotificationRequestDataNoc",
  "title": "AchNotificationOfChangeNotificationRequestDataNoc",
  "properties": {
    "newBankAccountNumber": {
      "description": "New bank account number.",
      "type": "string"
    },
    "newBankAccountType": {
      "description": "New bank account type.\n\nPossible values:\n*  **Savings**\n*  **Checking**\n\n",
      "enum": [
        "Checking",
        "Savings"
      ],
      "type": "string"
    },
    "newBranchCode": {
      "description": "New branch code.",
      "type": "string"
    },
    "reasonCode": {
      "description": "Notification of Change reason code.\n\nPossible values:\n*  **C01** : Incorrect bank account number.\n*  **C02** : Incorrect transit/routing number.\n*  **C03** : Incorrect transit/routing number and bank account number.\n*  **C04** : Bank account name change.\n*  **C05** : Incorrect payment code.\n*  **C06** : Incorrect bank account number and transit code.\n*  **C07** : Incorrect transit/routing number, bank account number and payment code.\n*  **C09** : Incorrect individual ID number.\n*  **C10** : Incorrect company name.\n*  **C11** : Incorrect company identification.\n*  **C12** : Incorrect company name and company ID.\n\n",
      "enum": [
        "C01",
        "C02",
        "C03",
        "C04",
        "C05",
        "C06",
        "C07",
        "C09",
        "C10",
        "C11",
        "C12"
      ],
      "type": "string"
    }
  },
  "required": [
    "reasonCode"
  ],
  "type": "object"
}