curl --request POST \
--url https://messenger-public-api.cogfy.com/messages/interactive/button \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"from": "<string>",
"to": "<string>",
"interactive": {
"type": "button",
"header": {
"type": "text",
"text": "<string>"
},
"body": {
"text": "<string>"
},
"footer": {
"text": "<string>"
},
"action": {
"buttons": [
{
"type": "<string>",
"reply": {
"id": "<string>",
"title": "<string>"
}
}
]
}
}
}'