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

# Verify OTP

> **Host**: http://qshop.ng



## OpenAPI

````yaml post /security/otp/verify
openapi: 3.1.0
info:
  title: OpenAPI Specification
  version: 1.0.0
  description: >-
    QShop storefront API.  This API is used to build a storefront for a QShop
    store
  contact:
    name: QShop
    url: https://qshop.ng
    email: hello@qshop.ng
servers:
  - url: http://staging.qshop.ng/apiv2
    description: Staging server
  - url: http://qshop.ng/api
    description: Production server
security: []
paths:
  /security/otp/verify:
    post:
      tags:
        - Authentication
        - OTP
      summary: Verify OTP
      description: '**Host**: http://qshop.ng'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                shop:
                  type: string
                code:
                  type: string
              required:
                - type
                - shop
                - code
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      type:
                        type: string
                      shop:
                        type: string
                      code:
                        type: string
                    required:
                      - type
                      - shop
                      - code
                  success:
                    type: boolean
                required:
                  - msg
                  - data
                  - success
          description: ''
          headers:
            access-control-allow-headers:
              required: false
              schema:
                type: string
            access-control-allow-methods:
              required: false
              schema:
                type: string
            access-control-allow-origin:
              required: false
              schema:
                type: string
            alt-svc:
              required: false
              schema:
                type: string
            cf-cache-status:
              required: false
              schema:
                type: string
            cf-ray:
              required: false
              schema:
                type: string
            content-encoding:
              required: false
              schema:
                type: string
            content-type:
              required: false
              schema:
                type: string
            date:
              required: false
              schema:
                type: string
            etag:
              required: false
              schema:
                type: string
            nel:
              required: false
              schema:
                type: string
            report-to:
              required: false
              schema:
                type: string
            server:
              required: false
              schema:
                type: string
            x-powered-by:
              required: false
              schema:
                type: string

````