Twilio
A secure client library for Twilio's APi
Install
npm install @appstitch/twilionpm install @appstitch/core
npm install @appstitch/typesUsage
import { sendMessage, makeCall } from "@appstitch/twilio";
// OR
import * as twilioClient from "@appstitch/twilio";Send a message
twilioClient.sendMessage({
from: "+1234567890",
to: "+10987654321",
body: "My First Twilio Message",
}).then(message => console.log(message.sid));
})Make a call
Last updated