This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Any environment variables set in .env are available on the context object. | |
* Any URL parameters passed on an API call to a Twilio Function are available on the event object. | |
* @param {*} context | |
* @param {*} event | |
* @param {*} callback | |
*/ | |
exports.handler = function(context, event, callback) { | |
const twilioAccountSid = context.ACCOUNT_SID; |