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

# Scan QRCode

> Scan a QR code for Zuwinda Authentication



## OpenAPI

````yaml POST /messaging/whatsapp/accounts/scan-qrcode
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.zuwinda.com/v2
security:
  - ZuwindaToken: []
paths:
  /messaging/whatsapp/accounts/scan-qrcode:
    post:
      description: Scan a QR code for Zuwinda Authentication
      requestBody:
        description: Scan QR code
        content:
          application/json:
            schema:
              type: object
              properties:
                accountId:
                  type: string
                  example: 5bb8427e-afd7-4fd9-bf76-b93cc8aff20e
              required:
                - accountId
        required: true
      responses:
        '200':
          description: QR code scan response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScanQRCode'
        '401':
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ScanQRCode:
      required:
        - data
      type: object
      properties:
        data:
          type: object
          properties:
            responseCode:
              type: string
              example: '00'
            QRCode:
              type: string
              example: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAIAAAD...
            Timeout:
              type: integer
              example: 60
    Error:
      required:
        - data
      type: object
      properties:
        data:
          type: object
          properties:
            responseCode:
              type: integer
              format: int64
            message:
              type: string
  securitySchemes:
    ZuwindaToken:
      type: apiKey
      in: header
      name: X-Access-Key
      description: Your Zuwinda API token

````