# Vpa Verification

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/vpa-verification/vpa:
    post:
      summary: Vpa Verification
      deprecated: false
      description: ''
      tags:
        - Verification Suite/APIs - Verification Suite /UPI(VPA) Verification
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                vpaHandle:
                  type: string
                  x-apidog-mock: '{{$string.alphanumeric}}'
                  description: Vpa handle which needed to be verified
                customerRequestId:
                  type: string
                  x-apidog-mock: '{{$string.alphanumeric}}'
                  description: Unique Id for each record
              required:
                - vpaHandle
                - customerRequestId
              x-apidog-orders:
                - vpaHandle
                - customerRequestId
            example:
              vpaHandle: string
              customerRequestId: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  response_code:
                    type: integer
                  response_message:
                    type: string
                  payload:
                    type: object
                    properties:
                      vpaVerificationId:
                        type: string
                        x-apidog-mock: '{{$string.alphanumeric}}'
                      customerRequestId:
                        type: string
                        x-apidog-mock: '{{$string.alphanumeric}}'
                      companyId:
                        type: string
                        x-apidog-mock: '{{$string.alphanumeric}}'
                      vpaHandle:
                        type: string
                        x-apidog-mock: '{{$string.alphanumeric}}'
                      beneficiaryName:
                        type: string
                        x-apidog-mock: '{{$person.fullName}}'
                      beneficiaryIfsc:
                        type: string
                        x-apidog-mock: '{{$string.alphanumeric}}'
                      accountType:
                        type: string
                        x-apidog-mock: '{{$lorem.words}}'
                      responseMessage:
                        type: string
                        x-apidog-mock: '{{$lorem.words}}'
                    required:
                      - vpaVerificationId
                      - customerRequestId
                      - companyId
                      - vpaHandle
                      - beneficiaryName
                      - beneficiaryIfsc
                      - accountType
                      - responseMessage
                    x-apidog-orders:
                      - vpaVerificationId
                      - customerRequestId
                      - companyId
                      - vpaHandle
                      - beneficiaryName
                      - beneficiaryIfsc
                      - accountType
                      - responseMessage
                required:
                  - response_code
                  - response_message
                  - payload
                x-apidog-orders:
                  - response_code
                  - response_message
                  - payload
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Verification Suite/APIs - Verification Suite /UPI(VPA) Verification
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-18880712-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
