Communication

The communication API enables text message delivery. Authentication systems can be quickly build using a combination of TOTP API and Communication API to authenticate and onboard users

Ping

GET https://api-<region>.renda.io/communication/ping

Heartbeat Check

Headers

NameTypeDescription

x-api-key

string

Renda API Key

[
    {
        "type": "Success",
        "message": "Renda.io ping successful"
    }
]

Send SMS

POST https://api-<region>.renda.io/communication/sendSMS

Headers

NameTypeDescription

x-api-key

string

Request Body

NameTypeDescription

number

string

Valid Mobile number +441234567890 00441234567890 <country code> + <mobile number>

message

string

SMS Text

senderName

string

Sender Name 3-11 chars if alphanumeric 3-15 chars if numeric Spaces and special characters are not allowed

{
    "messageid": "612733016353393435",
    "status": "SENT"
}

Last updated