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 get key from syncListItems wth Runtime client

I want to use twilio functions & Sync by Runtime Client. I made function below and got error exports.handler = function(context, event, callback) { let sync = Runtime.getSync(); …
0
votes
1 answer

Is it possible to send twiml content rather than pointing to a URI when initiating a Twilio call

When i make a call as voice content to that call, can i send a dynamically generated twiml message rather pointing to a URI that contains twiml message ? If not is there a a workaround to accomplish this , cause I see DIAL and SAY APIs which get…
0
votes
2 answers

Twilio Studio - Access DTMF Digits from a returned by a function?

Is there any way while inside a Twilio Studio Flow to access Digits from a TwiML Gather that has been returned from a function inside the flow? I am using Twilio Studio to create a rather complex call flow. At one point in the flow, I need to…
Andrew
  • 3
  • 2
0
votes
1 answer

Twilio Functions - Understanding customer voice through a outbound call using ASR

I need to automatically make calls for customers and start a interaction with them through voice. Basically, when the customer pickup the phone, my "robot" will ask: "Hey, it seems you didn't finish your order. Would you like to finish by phone?"…
Rafael Cronemberger
  • 231
  • 1
  • 4
  • 11
0
votes
1 answer

Twilio delay call connection until dialed number is answered

I want my Twilio number to continue to ring (without being answered by Twilio) until a number I want the call forwarded to answers. According to the docs, the pause verb when used first in the response, delays pickup of incoming calls. Is there a…
charsi
  • 2,917
  • 22
  • 40
0
votes
1 answer

Twilio SRV lookup while forwarding to SIP URI

I am trying to forward calls to my sip device from my twilio number. However this is currently not working as expected because Twilio does not like SIP providers using a load balanced url. In my case the sip uri ends with @in.callcentric.com which…
charsi
  • 2,917
  • 22
  • 40
0
votes
1 answer

getting in-process queues in twilio

Is there any way to get Queues which have current_size greater than 0. I want to get Queues which have current_size greater than 0, I have hundreds of Queues in the system so i want to get only specific queues. This is what i have done. I am getting…
0
votes
0 answers

retrieve digits parameter twilio

Hello I am new at twilio. I build a small project for school that gathers some details (like account number, zip, street number) The compiled script is:
g152xx
  • 1
  • 2
0
votes
1 answer

Live conversation between two number using twilio

I want to make live conversation between number 1 and number 2. My code is given below -
0
votes
0 answers

How to store recordings for each channel

I am following following blog to click to call. https://www.twilio.com/docs/tutorials/click-to-call-java-spring I am able to place call and record too. But how can we store recording for each channel ? Can someone please…
0
votes
1 answer

How to configure Twilio send sms with callback url?

We have a requirement to configure callback URL with a custom parameter. It's possible to configure the callback http url in Twilio console. But we have to configure the callback url when we send sms so that when the user replies, twilio will make…
-1
votes
1 answer

Invoke a twilio function without Studio Flow

I cannot seem to figure out how to call a Twilio function correctly. I tried calling it by passing data via POST: url = "https://xxxx-dev.twil.io/voicemail" data = {'event': {'id': '00141', 'RecordingUrl':…
elena
  • 3,740
  • 5
  • 27
  • 38
-1
votes
1 answer

Use Functions to get total number of in-progress and ringing calls to number

Am familiar with Twilio Studio and Twilio API (via PHP). Not familiar with Functions/node, so I'm a little lost on how to do this simple requirement... In Studio I need to call a Function to return an integer of the total number of 'in-progress' and…
Rover
  • 33
  • 3
-1
votes
2 answers

How to use Twilio API to create a Twilio Function (or any other Twilio built-in service) that forwards incoming calls?

In my app, the users see a list of Twilio numbers. I simply want to give the user the ability to specify a "forward number" for each of these numbers, and my app would call the Twilio API to set this up properly. I understand that I can give each…
-1
votes
1 answer

HTTP GET request for user's phone number in fulfillment editor

We are setting up a chat bot through Dialogflow. A user will receive a weblink to the bot in a call or SMS sent through twilio. I'm wondering if it is possible for us to set up an HTTP get request to twilio in fulfillment so that we can set a…
1 2 3
13
14