curl --request POST \
--url https://messenger-public-api.cogfy.com/messages/interactive/cta_url \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"from": "<string>",
"to": "<string>",
"interactive": {
"type": "cta_url",
"header": {
"type": "text",
"text": "<string>"
},
"body": {
"text": "<string>"
},
"footer": {
"text": "<string>"
},
"action": {
"name": "cta_url",
"parameters": {
"display_text": "<string>",
"url": "<string>"
}
}
}
}'