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

# Send Poll

> Engage users and aggregate instantly actionable response feedback data loops by deploying structured real-time interactive choice survey components.



## OpenAPI

````yaml POST /send-poll
openapi: 3.0.3
info:
  title: Wachat Enterprise API
  description: >
    Welcome to the official Wachat API reference. Wachat provides
    developer-friendly, ultra-reliable infrastructure to scale your WhatsApp
    communications programmatically.


    Easily deploy automated messaging pipelines, orchestrate interactive
    customer engagement patterns, verify phone numbers instantly, and control
    containerized WhatsApp instances via a secure, production-grade REST
    architecture.
  version: 1.0.0
servers:
  - url: https://app.wachat.net/api/v1
    description: Live Production Gateway
security:
  - bearerAuth: []
paths:
  /send-poll:
    post:
      tags:
        - High-Conversion UI Modules
      summary: Dispatch Interactive Real-Time Polls
      description: >-
        Engage users and aggregate instantly actionable response feedback data
        loops by deploying structured real-time interactive choice survey
        components.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - instanceName
                - number
                - pollName
                - options
                - selectableCount
              properties:
                instanceName:
                  type: string
                  description: Name of your connected WhatsApp session profile.
                number:
                  type: string
                  description: Destination channel target phone route parameter.
                pollName:
                  type: string
                  description: The main survey query question or statement text.
                options:
                  type: array
                  description: Collection array mapping multiple choice answer options.
                  items:
                    type: string
                selectableCount:
                  type: integer
                  description: >-
                    Maximum count limit restriction designating total valid
                    selectable check answers allowed per voter profile.
      responses:
        '200':
          description: Interactive polling layout distributed successfully.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Authenticate your integration payloads by injecting your premium secure
        Wachat Account API Private Secret Key inside standard Authorization
        Bearer header vectors.

````