0
Send SMS Verification
One script reply has been approved by the moderators Verified

Send an SMS verification to a phone number. See the documentation for more information

Created by hugo697 423 days ago Viewed 9017 times
0
Submitted by hugo697 Bun
Verified 423 days ago
1
import { Twilio } from "twilio";
2

3
type Twilio = {
4
  accountSid: string;
5
  token: string;
6
};
7

8
export async function main(twilio: Twilio, friendlyName: string) {
9
  const client = new Twilio(twilio.accountSid, twilio.token);
10
  const verification = client.verify.v2.services.create({ friendlyName });
11
  return verification;
12
}
13