Questions tagged [twilio-functions]

Twilio Functions provides a serverless environment for you to build and run your code, easily interacting with other Twilio APIs and getting to production faster.

197 questions
0
votes
1 answer

How to securely store phone numbers in Twilio Functions?

I am using Twilio Functions. I wonder if the phone numbers stored in the Function's code are secure? I am using code similar to that found here:…
0
votes
1 answer

How can you send Twilio recorded message url to third party API

Hi I'm trying to set up voice mail for incoming calls through Twilio Functions and sending the call information with the recorded URL to external webhook appreciate your suggestions on how to implement it exports.handler = function(context, event,…
Moni
  • 1
0
votes
1 answer

How to fix Twilio function to accept incoming calls and have voicemail functionality

When the function is configured on a Twilio phone number the function will immediately direct the calling party to voicemail failing to notify the called party of an incoming call and denying the called party (SIP endpoint)…
0
votes
0 answers

Need help understanding how sending a redirect instruction in Twilio taskrouter works using Twilio Functions

I am trying to use the redirect instruction to take the customer and worker into a conference call in that is of fixed length (using timeLimit) but is variable in the sense that the timeLimit is determined by calling another function. I am having…
Lukas P
  • 1
  • 2
0
votes
1 answer

How can I send notifications to multiple numbers with Twilio?

I'm trying to send sms notification with Twilio but i can't, it only send notification to one of the numbers(my number)that I add to my notification options ('notificationOpts') and always happens the same. It only works for my number but not for…
0
votes
1 answer

Best way to get last message and unread message count from twilio channel android

I have checked all the possibility to get the last message and unread message count from the Twilio channel. When tried to get the last message from the channel that I faced threading issue and also it was very slow. So can anyone help me to achieve…
0
votes
1 answer

Twilio Autopilot, getting it to understand Alphanumeric responses

When we ask a user a question that requires letter & numbers in response (voice / on phone), the system always misinterprets what the user says. For example, if they response "ABC123" twilio will send us "Hey Be See one two three". Which when…
BSDG
  • 39
  • 8
0
votes
1 answer

How To Configure Django Authy For Two Factor Authentication

I have been researching Django 2 factor for the last couple days. I've finally come to a point where I've gotten the Django Twilio phone verification to work. Here is the code the working code... from authy.api import AuthyApiClient from…
0
votes
1 answer

Timer function using Twilio functions

Is it possible to create a timer that does callback after 5 minutes? In the documentation there seems to be a 5 second execution limit after which everything gets reset. Any workaround?
X10D
  • 600
  • 2
  • 13
0
votes
1 answer

My android project crashed when I called token.jwt for twilio chat

I am trying to generate access token for twilio chat but got this error:I have been trying to figure out where the error is coming from but can't get it figured out. I will really appreciate your help. Thanks E/AndroidRuntime: FATAL EXCEPTION: main …
0
votes
1 answer

Retrieving confidence score inside of Twilio function?

I'm creating a chatbot using the Twilio Autopilot for SMS and Voice. I want to know if there's a way to obtain the confidence score for the task the Twilio NLP matches. I want to obtain it when inside a Twilio function the task has invoked. The…
user990692
  • 543
  • 1
  • 8
  • 16
0
votes
1 answer

Using GATHER to gather user's names in Twilio

Hi is it possible to gather users name using the gather verb? I'm getting an application error, where can i read it's details? Can i use any "hint" to improve gathering names?
X10D
  • 600
  • 2
  • 13
0
votes
1 answer

Twilio Function End runtime

I am having problems trying to make a function that I will call from flex instance. The problem is that I'm getting the runtime application timed out error . I know how that twilio will kill any function that lasts longer than 5 secs. I want to do…
danny gonzalez
  • 210
  • 2
  • 10
0
votes
1 answer

Call forwarding + SMS + Whisper?

I'm trying to implement a Twilio function to (1) forward calls to my personal phone, (2) send a "heads up" SMS just before, and (3) say a whisper prior to connecting. I've been able to set up Twilio to do any 2 of the previous 3 things but never the…
Sebastian Rivas
  • 1,700
  • 2
  • 13
  • 15
0
votes
3 answers

Create a HTTP POST to Twilio Functions (send SMS)

I have created a Twilio function that I would like to use to send my affiliate referral link to subscribers of an application that come through my channel. It works fine with a static to / from number, however I would like to make the "to" field a…