Developer/IT > Whisbi API > Send an SMS with Whisbi’s API > Using plain body text

Using plain body text

To send a SMS within a plain SMS just need to provide:

  • Account: the account SID
  • From: specifies the phone number, 
  • To: determines the destination phone
  • Body: includes the full text of the message you want to send, limited to 160 characters.

Example

POST

https://api.whisbi.com/api/sms

body:
{
"account": "000000-0000-1111-0000-109f58471b09",
"from": "+18091375163",
"to": "+34664725444",
"body": "My plan text body",
}

Copy Code