curl --request POST \
--url https://messenger-public-api.cogfy.com/messages/template \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"from": "<string>",
"to": "<string>",
"template": {
"name": "<string>",
"language": {
"code": "<string>"
},
"components": [
{
"type": "<string>",
"sub_type": "<string>",
"index": 1,
"parameters": [
"<string>"
]
}
]
}
}'