curl -X POST https://your-api.com/message/sendList/my-instance \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"number": "5511999999999",
"title": "Product Catalog",
"description": "Choose a product category",
"buttonText": "View Products",
"footerText": "Evolution API Store",
"sections": [
{
"title": "Electronics",
"rows": [
{
"title": "Smartphone",
"description": "Latest model smartphones",
"rowId": "product-smartphone"
},
{
"title": "Laptop",
"description": "High-performance laptops",
"rowId": "product-laptop"
}
]
},
{
"title": "Accessories",
"rows": [
{
"title": "Headphones",
"description": "Wireless and wired options",
"rowId": "product-headphones"
}
]
}
]
}'