Skip to main content
POST
https://api.telepie.com/v1/
/
whatsapp
Text Messages
curl --request POST \
  --url https://api.telepie.com/v1/whatsapp \
  --header 'apikey: <api-key>'
To send a simple text message, first assemble an object with type text ..

Required Body Parameters

body
object
required
Your message’s body. Maximum of 1024 characters.
curl -P - /v1/whatsapp\
-H 'apikey':'string'
-H "Content-Type: application/json" \
-d '{
    "recipient_type": "individual",
    "from": "+91XXXXXXXXXX",
    "to": "+91XXXXXXXXXX",
    "type": "text",
    "text": {
        "body": "Not Working"
    },
}