curl --location --request POST '/api/create-message' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"authkey": "{{authkey}}",
"appkey": "{{appkey}}",
"channel": "telegram",
"to": "@username",
"template_id": "TEMPLATE_UUID_FROM_DASHBOARD",
"variables": {
"1": "Value 1",
"2": "Value 2"
}
}'{}