---
title: "BankInformationV3"
url: "https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7/schemas/BankInformationV3"
---

> Full API specification: https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7.md

# BankInformationV3

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business Annuity API
  version: 0.7.0
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    BankAddress:
      type: object
      additionalProperties: false
      properties:
        addressType:
          type: string
          description: Bank Address Type
          enum:
            - RESIDENCE
            - BUSINESS
            - POBOX
            - SEASONAL
            - SECONDARY
            - MAILING
        addressLine1:
          type: string
          description: Bank Address Line 1
        addressLine2:
          type: string
          description: Bank Address Line 2
        addressLine3:
          type: string
          description: Bank Address Line 3
        city:
          type: string
          description: State in which the bank is located.
        state:
          type: string
          description: State in which the bank is located.
        zipCode:
          type: string
          description: Zip code (5 Digit)
        zipCodeExt:
          type: string
          description: Zip extension (4 Digit)
        country:
          type: string
          description: Country in which the bank is located.
    BankInformationV3:
      type: object
      additionalProperties: false
      properties:
        bankId:
          type: string
          description: Unique identifier for the bank associated with the account.
        nameOnAccount:
          type: string
          description: Name of the account holder as it appears on the bank account.
        accountStatus:
          type: string
          description: Current status of the bank account.
        accountNumber:
          type: string
          description: Bank account number used for transactions.
        routingNumber:
          type: string
          description: Bank routing number used to identify the financial institution.
        accountType:
          type: string
          description: Type of bank account, such as checking or savings.
          enum:
            - CHECKING
            - MONEYMARKETACCOUNT
            - BROKERAGEACCOUNT
            - CREDITCARD
            - DEBITCARD
            - DIGITALPAYMENT
            - MUTUALFUND
            - SAVINGS
            - CERTIFICATEOFDEPOSIT
        ibaNumber:
          type: string
          description: International Bank Account (IBA) number associated with the account.
        abaNumber:
          type: string
          description: American Bankers Association (ABA) number used to identify the bank.
        bankName:
          type: string
          description: Name of the bank branch associated with the account.
        address:
          $ref: "#/components/schemas/BankAddress"
```
