Пример кода для отправки сообщения с использованием twilio API,
Пример кода
const twilioClient = context.getTwilioClient();
twilioClient.messages
.create({ from: context.PHONE_NUMBER, to: phoneNumber, body: message })
.then(x => {
// If the SMS was successfully sent, remove the item from the list
return twilioClient.sync
.services(event.ServiceSid)
.syncLists(event.ListUniqueName)
.syncListItems(orderNumber)
.remove();
})