curl -L \
--request POST \
--url 'https://base_url/chats/sendListMessages?id=id' \
--header 'Content-Type: application/json' \
--data '{
"instance_key": "id",
"jid": "receivernumber",
"title": "TITLE",
"text": "list message",
"footer": "footer",
"buttonText": "hello",
"sections": [
{
"title": "list",
"rows": [
{
"title": "list 1",
"description": "descript 1",
"rowId": "1"
},
{
"title": "list 2",
"description": "descript 2",
"rowId": "2"
}
]
}
]
}'