Twilio Step

Sends SMS messages in a workflow using Twilio. Use this step to send text notifications to users using your Twilio account.

Top-level properties

nametyperequiredconstraints
connectionstringyesName of the connection instance
actionstringyesenum: SEND_SMSOperation to perform
sendFromstringyesSender phone number (E.164 format)
sendTostringyesRecipient phone number (E.164 format)
messagestringyesSMS body content

Example (JSON)

{
  "connection": "twilio-prod",
  "action": "SEND_SMS",
  "sendFrom": "+15557654321",
  "sendTo": "+15551234567",
  "message": "Your verification code is 123456."
}