> ## 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 List Menu

> Package granular menus, service catalogs, or support pathways beautifully inside a compact single-toggle floating drawer element that opens structured choices on user interaction.



## OpenAPI

````yaml POST /send/list
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/list:
    post:
      tags:
        - High-Conversion UI Modules
      summary: Dispatch Multi-Row List Selection Menu
      description: >-
        Package granular menus, service catalogs, or support pathways
        beautifully inside a compact single-toggle floating drawer element that
        opens structured choices on user interaction.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - instanceName
                - number
                - type
                - interactive
              properties:
                instanceName:
                  type: string
                  description: Connected target session instance system path identity key.
                number:
                  type: string
                  description: >-
                    Target mobile recipient parameters with structural
                    international context.
                type:
                  type: string
                  enum:
                    - interactive
                  description: Configure component container to `interactive`.
                  example: interactive
                delay:
                  type: integer
                  description: >-
                    Custom organic response processing delay settings in
                    milliseconds.
                interactive:
                  type: object
                  required:
                    - type
                    - title
                    - text
                    - buttonText
                    - sections
                  properties:
                    type:
                      type: string
                      enum:
                        - list
                      description: >-
                        Establish targeted layout logic context configuration
                        exclusively to `list`.
                      example: list
                    title:
                      type: string
                      description: Top header structural element designation text string.
                      example: Digital Service Center
                    text:
                      type: string
                      description: Primary description body content context mapping.
                      example: >-
                        Please select one of the available consultation sessions
                        below:
                    footerText:
                      type: string
                      description: Lower margins text label string format setting.
                      example: Flobamora Solusi Digital
                    buttonText:
                      type: string
                      description: >-
                        Label text printed on the interactive list toggle
                        component button.
                      example: View All Sessions
                    sections:
                      type: array
                      description: >-
                        Multi-dimensional object grouping choice rows
                        structurally into categorical segments.
                      items:
                        type: object
                      example:
                        - title: Schedule Options
                          rows:
                            - title: Morning Session
                              description: 09:00 - 12:00 PM
                              rowId: sesi_1
                            - title: Sesi Siang
                              description: 13:00 - 16:00 AM
                              rowId: sesi_2
      responses:
        '200':
          description: >-
            Multi-tiered structured choice component list menu sent
            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.

````