v1

latestSwagger 2.02026-07-1791478483.9 KB
Send Message

Send a list message

Send an interactive list message (single-select) rendered as a tappable menu.

Required body fields: number, title, description, footerText, buttonText, sections. Each section must contain one or more rows. When rowId is omitted, the server generates a fallback ID. When buttonText is empty, the server falls back to "Ver Menu".

Uses legacy ListMessage format (no ViewOnceMessage wrapper) so it renders on iOS, Android and WhatsApp Web.

post/send/list

Request body

buttonTextstring

Label of the button that opens the list. Defaults to "Ver Menu" when empty.

delayinteger

Typing delay (milliseconds) applied before sending the message.

descriptionstring

Body description text (required).

footerTextstring

Footer text (required).

formatJidboolean

If false, skips automatic formatting/validation of number into a JID.

mentionAllboolean

Mention every participant (groups only).

mentionedJidstring[]

JIDs to mention inside the body text.

numberstring

Destination phone number.

titlestring

Header title (required).

Example request

{
  "buttonText": "Abrir cardapio",
  "delay": 1200,
  "description": "Escolha o plano ideal para voce",
  "footerText": "Evolution GO",
  "number": "5582988898565",
  "sections": [
    {
      "rows": [
        {
          "description": "R$ 29,90/mes",
          "rowId": "plan_basic",
          "title": "Plano Basico"
        }
      ],
      "title": "Planos"
    }
  ],
  "title": "Nossos planos"
}

Response

success

GinH required