---
title: "ProducerBankAccountV2"
url: "https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/40f58935-396e-4da4-8f47-1587041e1b16/schemas/ProducerBankAccountV2"
---

> Full API specification: https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/40f58935-396e-4da4-8f47-1587041e1b16.md

# ProducerBankAccountV2

A producer's bank account. The account and routing numbers are masked to `****<last4>`.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: AgentSync Contracting & Hierarchies API
  version: v1.7.6
servers:
  - url: https://api.sandbox.agentsync.io/contracting
    description: Sandbox
  - url: https://api.agentsync.io/contracting
    description: Production
components:
  schemas:
    ProducerBankAccountV2:
      type: object
      description: A producer's bank account. The account and routing numbers are
        masked to `****<last4>`.
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
          description: The account type.
          enum:
            - CHECKING
            - SAVINGS
            - CREDIT_UNION
        bankName:
          type: string
        nickname:
          type: string
        holderName:
          type: string
        number:
          type: string
          description: Account number masked to `****<last4>`.
          example: "****7890"
        routingNumber:
          type: string
          description: Routing number masked to `****<last4>`.
          example: "****0021"
```
