---
title: "UpdateBankAccountDto"
url: "https://developer.pexa.co.uk/apis/financials-v1-v1/versions/d3f169b2-8b77-47f6-8696-d6efa1bd09f2/schemas/UpdateBankAccountDto"
---

> Full API specification: https://developer.pexa.co.uk/apis/financials-v1-v1/versions/d3f169b2-8b77-47f6-8696-d6efa1bd09f2.md

# UpdateBankAccountDto

This field is required and can be updated only for type DESTINATION.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Financial
  version: v1
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    UpdateBankAccountDto:
      type: object
      nullable: true
      description: This field is required and can be updated only for type DESTINATION.
      properties:
        accountName:
          type: string
          maxLength: 35
          minLength: 1
          pattern: ^[a-zA-Z0-9\/\-\\?:().,'#=!"%&*<>;@{+\s]*$
          example: Bob Smith
        accountNumber:
          type: string
          pattern: ^\d{8}$
          example: "12345678"
        bankCode:
          type: string
          pattern: ^\d{6}$
          example: "123456"
        accountType:
          type: string
          pattern: ^(BUSINESS|PERSONAL)$
          example: BUSINESS
          description: |
            Allowed Values: [`BUSINESS`, `PERSONAL`]
```
