Skip to main content

send_sms

Send an outbound message to a PSTN phone number.

NameTypeDefaultDescription
send_smsRequiredobject-An object that accepts the send_sms parameters.

send_sms Parameters

NameTypeDefaultDescription
to_numberRequiredstringPhone number to send SMS message to in e.164 format
from_numberRequiredstringPhone number SMS message will be sent from
bodyRequiredstringBody of the text message
regionOptionalstringpicked based on account preferences or device locationRegion of the world to originate the message from
tagsOptionalstring[]Array of tags to associate with the message to facilitate log searches

Variables

Set by the method:

  • send_sms_result: (out) success | failed.

Examples

Send a text-only message:

version: 1.0.0
sections:
main:
- send_sms:
from_number: "+155512312345"
to_number: "+15555554321"
body: "Hi, I hope you're well."