v1

latestOpenAPI 3.0.32026-07-246376162.1 KB
Messaging

Send SMS

Send an outbound SMS message with a text body or a canned message template.

post/api/v4/messaging/sms

Request body

phone_numberstring phone required

The recipient's phone number.

Example request

{
  "phone_number": "18885658889",
  "sender_id": "18885658880",
  "message": {
    "content_type": "text",
    "content_data": {
      "body": "Hello, your order has been shipped."
    }
  },
  "source": {
    "system": "zoho",
    "account_id": "123321"
  }
}

Response

Created

Example response

{
  "sms": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  }
}