latestOpenAPI 3.1.1Proprietary – Contact us for usage terms2026-08-20173183551.4 KB

9da73dd2f99e

sms

Send an SMS

Sends an SMS message. Phone numbers must be in E.164 format. If you are concerned about your consumption, please refer to "<a href='https://www.ringover.com/support/texting-understanding-and-ontrolling-usage'>SMS: understand and control your consumption</a>".

Permission: Conversations Write required.

Monitoring: Optional. With Monitoring OFF, you can only send SMS from your own phone number. With Monitoring ON, you can send SMS from another team member's number using the user_id_forced parameter.

post/push/sms

Request body

archived_autoboolean nullable
from_numberstring

International number format (E.164)

to_numberstring

International number format (E.164)

contentstring
user_id_forcedinteger

(optional) force the userID of someone else in the team to send the SMS

scheduled_atstring date-time

(optional) schedule the SMS to be sent at a later date in UTC

Example request

{
  "from_number": "+33744332211",
  "to_number": "+33611223344",
  "content": "Hello World!",
  "user_id_forced": 12345,
  "scheduled_at": "2025-08-21T07:00:00.000Z"
}

Response

SMS accepted and queued for delivery.

message_idinteger
conv_idinteger

Example response

{
  "message_id": 1234567,
  "conv_id": 23456
}