# Pan Verification 

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/documentVerification/validate-pan/{pan}:
    get:
      summary: 'Pan Verification '
      deprecated: false
      description: ''
      tags:
        - Verification Suite/APIs - Verification Suite /PAN Verification
      parameters:
        - name: pan
          in: path
          description: ''
          required: true
          schema:
            type: string
        - name: apiName
          in: query
          description: ''
          required: false
          example: PAN_AUTHENTICATION
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  response_code:
                    type: integer
                  response_message:
                    type: string
                  payload:
                    type: object
                    properties:
                      pan:
                        type: string
                        x-apidog-mock: '{{$string.alphanumeric}}'
                      status:
                        type: string
                      name:
                        type: string
                        x-apidog-mock: '{{$person.fullName}}'
                      firstName:
                        type: string
                        x-apidog-mock: '{{$person.firstName}}'
                      middleName:
                        type: string
                        x-apidog-mock: '{{$person.middleName}}'
                      lastName:
                        type: string
                        x-apidog-mock: '{{$person.lastName}}'
                      failureReason:
                        type: string
                        x-apidog-mock: '{{$lorem.lines}}'
                      id:
                        type: integer
                      dob:
                        type: string
                    required:
                      - pan
                      - status
                      - name
                      - firstName
                      - middleName
                      - lastName
                      - failureReason
                      - id
                      - dob
                    x-apidog-orders:
                      - pan
                      - status
                      - name
                      - firstName
                      - middleName
                      - lastName
                      - failureReason
                      - id
                      - dob
                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 /PAN Verification
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-18880711-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
