Action ReferencesSendSmsAction
Action References

SendSmsAction

SendSmsAction

Purpose
Send an SMS via a configured provider with dynamic recipient and body.

When to use it

  • OTP/verification codes, short alerts, shipment updates.
  • Lightweight notifications that don’t warrant email or push.

Key fields

FieldTypeDescription
providerStringSMS provider id (twilio, vonage, etc.).
subjectMScriptOptional subject/tag if provider supports it.
bodyMScriptSMS text content.
toMScriptRecipient phone number (E.164).
fromMScriptSender id/shortcode (optional).

Example

{
  "id": "a360-send-sms",
  "name": "sendOtpSms",
  "provider": "twilio",
  "subject": "`OTP`",
  "body": "`Your verification code is ${this.otpCode}`",
  "to": "this.user.mobile",
  "from": "`ACME`"
}
Was this page helpful?
Built with Documentation.AI

Last updated Jan 3, 2026