> ## Documentation Index
> Fetch the complete documentation index at: https://rollfi-monthly-semi-monthly.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# addUserBankAccount

> ## Options:
## 1. Manual Entry with Microdeposit Verification
- **Fields:** Bank Name, Account Number, Routing Number, Account Type
## 2. Plaid Integration
- Secure linking via Plaid for automatic account verification

✅ At least one verified bank account is required to complete onboarding.
CustomerOnboarding




## OpenAPI

````yaml post /userPortal#addUserBankAccount
openapi: 3.0.1
info:
  title: Default module
  description: ''
  version: 1.0.0
servers: []
security:
  - basic: []
tags: []
paths:
  /userPortal#addUserBankAccount:
    post:
      tags: []
      summary: addUserBankAccount
      description: |
        ## Options:
        ## 1. Manual Entry with Microdeposit Verification
        - **Fields:** Bank Name, Account Number, Routing Number, Account Type
        ## 2. Plaid Integration
        - Secure linking via Plaid for automatic account verification

        ✅ At least one verified bank account is required to complete onboarding.
        CustomerOnboarding
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                method:
                  type: string
                  title: addUserBankAccount
                  default: addUserBankAccount
                  example: addUserBankAccount
                userPayAccountEntity:
                  type: object
                  properties:
                    companyId:
                      type: string
                      format: uuid
                    userId:
                      type: string
                      format: uuid
                    accountNumber:
                      type: string
                      maxLength: 40
                    routingNumber:
                      type: string
                      maxLength: 25
                    bankName:
                      type: string
                      maxLength: 40
                    accountType:
                      type: string
                      maxLength: 40
                    accountName:
                      type: string
                      maxLength: 40
                    payPercentage:
                      type: number
                      title: Max allowed is 100 %
                  required:
                    - companyId
                    - userId
                    - accountNumber
                    - routingNumber
                    - bankName
                    - accountType
                    - accountName
                    - payPercentage
              required:
                - method
                - userPayAccountEntity
            example:
              method: addUserBankAccount
              userPayAccountEntity:
                companyId: 8A9B7683-8E02-494D-8422-963FD05EE785
                userId: e066e305-3816-4b06-8576-50d2502be436
                accountNumber: '9889890989'
                routingNumber: '122238242'
                bankName: Chase Bank
                accountType: savings
                accountName: default
                payPercentage: 50.98
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  userPayAccountEntity:
                    type: object
                    properties:
                      userPayAccountEntityId:
                        type: string
                      status:
                        type: string
                      message:
                        type: string
                    required:
                      - userPayAccountEntityId
                      - status
                    x--orders:
                      - CompanyFundingSourceEntityID
                      - Status
                      - Message
                required:
                  - userPayAccountEntity
                x--orders:
                  - CompanyFundingSourceEntity
              example:
                userPayAccountEntity:
                  userPayAccountEntityId: 8BE7466C-37B5-4437-8FEE-7D0B582784BD
                  status: Ready
                  message: The User PayAccount Entity has been added successfully.
          headers: {}
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: integer
                        message:
                          type: string
                      required:
                        - code
                required:
                  - error
              example:
                error:
                  code: 400
                  message: Invalid companyId
          headers: {}
      deprecated: false
      security:
        - basic: []
components:
  securitySchemes:
    basic:
      type: http
      scheme: basic

````