Interactive Messages
Build rich interactive experiences with buttons and lists.
Button Message
{
"type": "interactive",
"interactive": {
"type": "button",
"body": { "text": "Would you like to proceed?" },
"action": {
"buttons": [
{ "type": "reply", "reply": { "id": "yes", "title": "Yes" } },
{ "type": "reply", "reply": { "id": "no", "title": "No" } }
]
}
}
}List Message
{
"type": "interactive",
"interactive": {
"type": "list",
"body": { "text": "Choose an option:" },
"action": {
"button": "View Options",
"sections": [
{
"title": "Products",
"rows": [
{ "id": "prod1", "title": "Product A" },
{ "id": "prod2", "title": "Product B" }
]
}
]
}
}
}