const message = await zavu.messages.send({
to: "+14155551234",
text: "Choose a support topic:",
channel: "whatsapp",
messageType: "list",
content: {
listButton: "View Options",
sections: [
{
title: "Account",
rows: [
{ id: "password", title: "Reset Password", description: "Change or reset your password" },
{ id: "billing", title: "Billing Issue", description: "Questions about charges" }
]
},
{
title: "Orders",
rows: [
{ id: "track", title: "Track Order", description: "Check delivery status" },
{ id: "return", title: "Return Item", description: "Start a return request" }
]
}
]
}
});