Skip to main content
POST
/
sms
Send SMS with Unicode
curl --request POST \
  --url https://one.telepie.com/sms \
  --header 'apikey: <api-key>'
This feature is essential for reaching a global audience, ensuring that your messages are accurately represented regardless of the language or symbols used.

Request Body Parameters

sender
string
required
Originator/Alphanumeric ID
to
string
required
Recipient’s MSISDN
text
string
required
The phone number for the contact.
type
string
required
Route Type. Use TRANS for Transactional type. Use PROMO for Promotional type. Use OTP for OTP type.
unicode
integer
Route Type. Use TRANS for Transactional type. Use PROMO for Promotional type. Use OTP for OTP type.
{
  "sender": "senderName",
  "to": "91XXXXXXXXXX",
  "text": "Hello World!",
  "type": "TRANS",
  "unicode": 1
}