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

# Send List Message

> Send an interactive list message.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/messages/send/interactive/list
openapi: 3.1.0
info:
  title: wazzapi Public API
  description: >-
    Public API surface for external API-key clients. Only stable /api/v1
    endpoints are included.


    ## Webhook deliveries

    This reference also includes the webhook requests Wazzapi sends to your
    endpoint for incoming messages, message status updates, and device status
    changes. See the `Incoming webhooks` section in the sidebar for headers,
    payload fields, and concrete examples.
  version: 1.0.0
servers: []
security: []
tags:
  - name: Incoming webhooks
    description: >-
      POST deliveries that Wazzapi sends to your webhook endpoint after you
      subscribe to supported events. Verify the signature against the raw body
      and return a 2xx response quickly.
paths:
  /api/v1/messages/send/interactive/list:
    post:
      tags:
        - interactive
      summary: Send List Message
      description: Send an interactive list message.
      operationId: send_list_message_api_v1_messages_send_interactive_list_post
      parameters:
        - name: Authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListReplyRequest'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InteractiveMessageResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ListReplyRequest:
      properties:
        phone_number:
          type: string
          maxLength: 50
          minLength: 5
          title: Phone Number
          description: Recipient phone number.
        body:
          type: string
          maxLength: 1024
          minLength: 1
          title: Body
          description: Primary list message body.
        button_text:
          type: string
          maxLength: 30
          minLength: 1
          title: Button Text
          description: Call-to-action label that opens the list.
        footer:
          anyOf:
            - type: string
              maxLength: 60
            - type: 'null'
          title: Footer
          description: Optional footer text shown under the list body.
        sections:
          items:
            $ref: '#/components/schemas/InteractiveSection'
          type: array
          maxItems: 10
          minItems: 1
          title: Sections
          description: One or more sections containing selectable rows.
        whatsapp_account_id:
          type: string
          format: uuid
          title: Whatsapp Account Id
        contact_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Contact Id
      type: object
      required:
        - phone_number
        - body
        - button_text
        - sections
        - whatsapp_account_id
      title: ListReplyRequest
      description: Request to send a list message.
      examples:
        - body: Pick a campaign template
          button_text: Open options
          footer: Powered by Wazzapi
          phone_number: '6281234567890'
          sections:
            - rows:
                - description: Short promo blast
                  id: promo_flash
                  title: Flash Sale
                - description: New product announcement
                  id: promo_launch
                  title: Launch Update
              title: Templates
          whatsapp_account_id: c053d8ef-6c19-4ecb-9cc5-a4a64be79d92
    InteractiveMessageResponse:
      properties:
        success:
          type: boolean
          title: Success
        message_id:
          type: string
          format: uuid
          title: Message Id
        status:
          type: string
          title: Status
        run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Run Id
      type: object
      required:
        - success
        - message_id
        - status
      title: InteractiveMessageResponse
      description: Response from sending an interactive message.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    InteractiveSection:
      properties:
        title:
          type: string
          maxLength: 72
          minLength: 1
          title: Title
        rows:
          items:
            $ref: '#/components/schemas/InteractiveRow'
          type: array
          maxItems: 10
          minItems: 1
          title: Rows
      type: object
      required:
        - title
        - rows
      title: InteractiveSection
      description: Section in a list message.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    InteractiveRow:
      properties:
        id:
          type: string
          maxLength: 64
          minLength: 1
          title: Id
        title:
          type: string
          maxLength: 72
          minLength: 1
          title: Title
        description:
          anyOf:
            - type: string
              maxLength: 128
            - type: 'null'
          title: Description
      type: object
      required:
        - id
        - title
      title: InteractiveRow
      description: Row option in a list message.

````