curl --request POST \
--url https://api.effilink.co/v5/sms/sends \
--header 'ApiKey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"content": "[YourBrand] Global message: {{code}}",
"params": {"code": "DEFAULT"},
"toList": [
{ "mobile": "18800006666" },
{ "mobile": "18800008888", "content": "[YourBrand] Custom message for 8888" },
{ "mobile": "18800009999", "templateName": "verification_template" },
{ "mobile": "18800000000", "templateName": "verification_template", "params": {"code": "789012"} }
]
}'