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
1
vote
0 answers

Handling Twilio response with Sharepoint

I am working with TWILIO and Sharepoint 2016 to send text messages. I have created a Studio Dashboard to send the text messages and a Twilio function to send a response back to a Sharepoint list. My website is external facing with FBA accounts All…
1
vote
2 answers

Twilio Functions Error 20429 - Too many requests multiple sms messages

I am using Twilio functions and Programable SMS to send SMS Messages to a list of numbers form my iOS App. There are just over 100 mobile numbers (113 on the time of this error) in the list. Most of these messages send but then the function says…
Tom Coomer
  • 6,227
  • 12
  • 45
  • 82
1
vote
1 answer

How i can create extensions to Twilio number using Twilo Studio?

My question is; can i create extensions to Twilio number? I want to connect each extension to my phone numbers. My goal to send different auto response message to the incoming calls. Example: If customer call to number 123, he get message A. And if…
cobi
  • 11
  • 1
1
vote
1 answer

Twilio studio plus function, can't use string.split()

I can't split up a string using Functions. This is an SMS app in Studio: User texts his full name to Twilio, I call a function and add the Liquid variable with their full name and send it to a Function where I want to return only the first name.…
1
vote
1 answer

Twilio functions: Sending WhatsApp message when incoming call is received

I want to use the Twilio functions to run my actions when a phone call is received. Simple task: When i receive a phone call on the twilio number, i want to forward the phone call and also send a message to a whatsapp number to inform about the…
Franky1
  • 402
  • 6
  • 15
1
vote
1 answer

How do I send an SMS to multiple numbers via Twilio Functions?

I have a page with multiple UITextFields where a user can type in multiple contact numbers. When the send button is clicked it should send a preset text message to the contact numbers listed. I'm using Twilio to run this and I'm using the functions…
David
  • 23
  • 5
1
vote
2 answers

Taskrouter problem using Laravel. Task not getting created?

I've followed every single step in the Twilio's documentation called Dynamic Call Center with Laravel. My problem is that a call gets through the IVR, then after choosing a digit, nothing happens. My guess is that its not creating a task. the code…
Mr. J
  • 21
  • 3
1
vote
1 answer

Twilio Function not writing to Firebase

I'm trying to write to my Firebase database using a Twilio function (almost exactly the same as AWS Lambda function, if you're familiar with that), but I'm unable to do so. Firebase is generating a reference key for me, but nothing appears in my…
1
vote
1 answer

Twilio Studio Not Listing Services

I am setting up a Sync Application using Twilio's Sync Library. For some reason, none of the REST API methods seem to work. That is, I cannot get any of the sync methods to console.log() anything via the runtime functions. I can, however,…
1
vote
1 answer

How to properly Loop through SMS sending via Twilio Functions

I have Twilio Studio calling a Twilio Function and need it to send email to a variable list (small list) of emails. This question is mostly around looping through them as I can pass variables just fine. I have an array of emails to send a text to…
eahonet
  • 13
  • 4
1
vote
1 answer

Twilio Function Calling Studio Rest API - Accountsid in correct error

I am calling a Twilio Studio Flow Rest API from a Twilio function. Following is the function code: exports.handler = function(context, event, callback) { const request = require('request'); to = event.to; to = to.replace(/[()-.]/g, ''); …
arun kumar
  • 703
  • 2
  • 13
  • 33
1
vote
0 answers

"Unable to establish connection to Twilio Sync service" error

I initialized my twilio client in the code below but I am getting an error Unable to establish connection to Twilio Sync service My code: public void build(String token, TaskCompletionListener listener) { …
1
vote
1 answer

Twilio redirect function is not working on twilio studio

As question says twilio redirect function not working properly with flow (twilio studio). When I select function on phone number for incoming messages it is working FINE. But when I tried to redirect incoming msg using the function widget on…
brucelin
  • 981
  • 2
  • 11
  • 23
1
vote
1 answer

Twilio functions realTimeStatistics is not a function

I am building a twilio function but I am getting an error using a function that's in the documentation…
danny gonzalez
  • 210
  • 2
  • 10
1
vote
1 answer

Twilio nuget package dependency issue

I am using Twilio in my project which is in Asp.Net MVC. for Voice call and call forwarding. In My Project I have used Twilio.Api dll Version 3.4.1.0 Using thsis Dll I have implemented following functionality. List avaliable phone number. Purchase…
Abhishek
  • 972
  • 3
  • 12
  • 24