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
| name | type | required | constraints | |
|---|---|---|---|---|
connection | string | yes | Name of the connection instance | |
action | string | yes | enum: SEND_SMS | Operation to perform |
sendFrom | string | yes | Sender phone number (E.164 format) | |
sendTo | string | yes | Recipient phone number (E.164 format) | |
message | string | yes | SMS body content |
Example (JSON)
{
"connection": "twilio-prod",
"action": "SEND_SMS",
"sendFrom": "+15557654321",
"sendTo": "+15551234567",
"message": "Your verification code is 123456."
}Updated 22 days ago
