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

# verifyMicroDeposits

> 
The `verifyMicroDeposits` API verifies micro deposit amounts to confirm company bank account ownership.

### What it does:

- Verifies two small debit amounts sent to the company's bank account to ensure the company has legitimate access to the funding source
- Completes the bank account verification process for payroll funding

### Note:

- Requires exact debit amounts (**debitAmount1** and **debitAmount2**) from bank statement



## OpenAPI

````yaml post /adminPortal/verifyMicroDeposits
openapi: 3.0.1
info:
  title: Default module
  description: ''
  version: 1.0.0
servers: []
security:
  - basic: []
tags: []
paths:
  /adminPortal/verifyMicroDeposits:
    post:
      tags: []
      summary: verifyMicroDeposits
      description: >-

        The `verifyMicroDeposits` API verifies micro deposit amounts to confirm
        company bank account ownership.


        ### What it does:


        - Verifies two small debit amounts sent to the company's bank account to
        ensure the company has legitimate access to the funding source

        - Completes the bank account verification process for payroll funding


        ### Note:


        - Requires exact debit amounts (**debitAmount1** and **debitAmount2**)
        from bank statement
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                method:
                  type: string
                  title: addUserWage
                companyId:
                  type: string
                debitAmount1:
                  type: number
                debitAmount2:
                  type: number
              required:
                - method
                - companyId
                - debitAmount1
                - debitAmount2
            example:
              method: verifyMicroDeposits
              companyId: 7F8DBF11-3551-426C-8820-434C8CC33664
              debitAmount1: 0.12
              debitAmount2: 0.15
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  message:
                    type: string
                required:
                  - status
                  - message
              example:
                status: failed
                message: Verification Failed.
          headers: {}
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                required:
                  - code
                  - message
              example:
                code: 400
                message: Bank account dosen't not exists for this companyId
          headers: {}
      deprecated: false
      security:
        - basic: []
components:
  securitySchemes:
    basic:
      type: http
      scheme: basic

````