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

# Human Verification

> Complete human verification for magic link requests that were flagged as potentially suspicious

Complete human verification for magic link requests that were flagged as potentially suspicious to ensure account security.


## OpenAPI

````yaml POST /api/v3/auth/human-verify
openapi: 3.0.0
info:
  title: KOTANI PAY API PLATFORM
  description: ''
  version: '3.0'
  contact: {}
servers:
  - url: https://preview.kotanipay.com
security: []
tags: []
paths:
  /api/v3/auth/human-verify:
    post:
      tags:
        - AUTHENTICATION
      summary: Human verification for suspicious requests
      description: >-
        Complete human verification for magic link requests that were flagged as
        potentially suspicious
      operationId: AuthController_humanVerify_api/v3
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HumanVerifyDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Human verification successful
                  data:
                    $ref: '#/components/schemas/VerifyResponseDto'
                    type: object
        '400':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Invalid verification token
                  data:
                    type: object
                    example: {}
        '500':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Internal Server Error
                  data:
                    type: object
                    example: {}
components:
  schemas:
    HumanVerifyDto:
      type: object
      properties:
        verificationToken:
          type: string
          description: Verification token from previous response
          example: encrypted_verification_token_here
      required:
        - verificationToken
    VerifyResponseDto:
      type: object
      properties:
        user_id:
          type: string
          description: user_id
          example: 5f9b2c7b9c9d6b0017b4e6b1
        session_id:
          type: string
          description: session_id
          example: 5f9b2c7b9c9d6b0017b4e6b1
        token_id:
          type: string
          description: token_id
          example: 5f9b2c7b9c9d6b0017b4e6b1
        token:
          type: string
          description: JWT access token
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
        refresh_token:
          type: string
          description: JWT refresh token
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
      required:
        - user_id
        - session_id
        - token_id
        - token
        - refresh_token

````