SMS Channel Step

Learn how to use the SMS step to send text messages to users

The sms step allows you to send text messages to your users' mobile devices through various SMS providers.

Example Usage

await step.sms('verification', async () => {
  return {
    body: 'Your verification code is: 123456',
  };
});

SMS Step Output

PropertyTypeRequiredDescription
bodystringYesThe text message content to be sent

SMS Step Result

The sms step does not return any result object.

On this page