send_list
Send interactive list messages via WhatsApp Business to present multiple options with titles, descriptions, and selectable rows for user interaction.
Instructions
Send interactive list message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| buttonText | No | Button text | |
| description | No | List description | |
| instanceName | Yes | Instance name | |
| number | Yes | Recipient phone number | |
| sections | Yes | List sections | |
| title | No | List title |
Input Schema (JSON Schema)
{
"properties": {
"buttonText": {
"description": "Button text",
"type": "string"
},
"description": {
"description": "List description",
"type": "string"
},
"instanceName": {
"description": "Instance name",
"type": "string"
},
"number": {
"description": "Recipient phone number",
"type": "string"
},
"sections": {
"description": "List sections",
"items": {
"properties": {
"rows": {
"items": {
"properties": {
"description": {
"type": "string"
},
"rowId": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"title": {
"description": "List title",
"type": "string"
}
},
"required": [
"instanceName",
"number",
"sections"
],
"type": "object"
}