Send SMS

Overview

Sends an SMS to any phone number

Category: Notifications

Use this action to send an SMS to any phone number. Provide the phone number in international format and the ISO country code. Set expectsReply to true for two-way messaging.

Request

Parameter Type Required Description Example
phoneNumber string Yes Phone number in international format +1234567890
countryCode string Yes ISO 3166-1 alpha-2 country code US
message string Yes The SMS text Your appointment is confirmed for tomorrow at 9am
expectsReply boolean Yes Whether a reply is expected (enables two-way messaging) false

Response

This action’s output is available as $sendSms in JSONata expressions. See Response format for the standard result.data / result.errors structure and error handling patterns.

Field Type Description
result.data.success boolean Whether the operation succeeded

Example output:

{
  "success": true
}