Build with Tether Flow APIs.
Integrate WhatsApp messaging into your own applications with our robust REST APIs and reliable webhooks.
Send a template message
curl -X POST https://api.tetherflow.com/v1/messages \
-H "Authorization: Bearer tf_live_xxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"to": "+919876543210",
"type": "template",
"template": {
"name": "shipping_update",
"language": "en_US",
"components": [
{ "type": "body", "parameters": [{ "type": "text", "text": "12345" }] }
]
}
}'