Questions tagged [twilio-studio]

Use this tag for questions about the features and functionality of Twilio Studio.

Twilio Studio is a visual application builder or IDE for the Twilio telecommunications platform.

Related tag:

191 questions
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

How to trigger a flow from within a separate flow

I am trying to use the Http Request widget within Studio to call another Studio flow, but no matter how I configure the request, I get a 401 response code. The logs also reference a Twilio 20003 error https://www.twilio.com/docs/errors/20003, but I…
1
vote
1 answer

Twilio Studio Engagement Not Completing

I am having difficulty understanding why my Twilio Studio engagement gets "stuck" after my function's callback. exports.handler = function(context, event, callback) { let twiml = new Twilio.twiml.VoiceResponse(); twiml.say("Hello sir"); …
Donovan H
  • 13
  • 3
1
vote
1 answer

Twilio Studio: send response message based on incoming message content

I already have a Twilio application with this use case : The incoming message is forwarded to a client The client replies to the message by sending a message to the twilio number. The message body will contain the phone number at the beginning…
arun kumar
  • 703
  • 2
  • 13
  • 33
1
vote
1 answer

See the full POST from Twilio Studio http request widget

I'm using the Twilio Studio to build an SMS flow and trying to post the results to a database. I'm getting an error from the post, but I can't seem to find what is being sent by the HTTP Request widget, I only see the results. I'm hoping if I can…
0
votes
1 answer

Twilio Studio - Send and wait for and reply - how can I loop until desired user input

I'm sending text suggestions for my users using Twilio. A user can respond with a "Confirm", "Decline" or send a freetext response, which I then parse and make changes accordingly (using a Make HTTP request widget), and send the new suggestion back…
Yehuda
  • 73
  • 7
0
votes
0 answers

Set Gather Widget Attribute from Set Variables Widget

Is it possible to set the Gather Input on Call widget timeout attribute from within a flow at runtime using a Set Variables widget? I have a Gather widget named gatherMenu and I have tried setting a preceding Set Variables widget Key to…
Alobar
  • 1
0
votes
1 answer

Studio Flow Survey Messages Out of Sequential Order (Android)

Anyone else encounter issues with text messaging via a Twilio Flow and Android in regards to user's phone recieving a message and answering it, but the follow-up messages show up above the previous answer in the texting app? This is causing…
0
votes
0 answers

How do I bypass/workaround dialogflow 256 character limit for detect intent text input length?

I'm new to dialogflow and was messing around trying to get a basic IVR working. I'm trying to get a long response and was using the "@sys.any" entity to take in the response, but it has a maximum detect intent text input length of 256 characters…
0
votes
1 answer

Need help changing chatflow so that one number can text multiple times

Currently, if a number texts into my chatflow, they are not able to text in again, I don't know how to change that I am currently trying to remake the flow without the single vs multiple entry split off without breaking it. This is the current…
Aj300
  • 9
  • 3
0
votes
1 answer

Unable to get JSON response from HTTP Widget

I trying to get the response from the HTTP Widget but he wont return. i am currently using a free API to test and the API return is: {"slip": { "id": 163, "advice": "Big things have small beginnings."}} What i…
0
votes
0 answers

Replicating "SendToFlex" Studio Widget via API for Conversation

I need to programmatically invoke the same functionality as the "Send to Flex" Widget (and also must keep the Studio Flow in place to serve other conditions). According to the docs, the widget calls the Interactions API, which I have successfully…
NSjonas
  • 10,693
  • 9
  • 66
  • 92
0
votes
1 answer

Studio flow SMS reply to "Send and wait for reply" with 10DLC registered number not working

If I trigger a Studio flow via the REST API trigger, SMS replies to a sent message work fine as long as the Twilio number used is *not * connected to a messaging service. I expect the "Send and wait for reply" widget in this flow to be triggered by…
0
votes
1 answer

How to assign the result of splitting a string to a variable in Twilio Studio Flow?

I need to split the input of the conversation on different variables: I send the message Name|Lastname|+549111122222, when I receive the incoming Conversation in Studio Flow, I need to split the data in three variables (name, lastname and…
0
votes
1 answer

Wait for Twilio IVR call to finish to get the user response

I've made an IVR using Twilio Studio. In my API I have something like this await validateForm(form); await twilioIvrService(phone); await saveData(form); return res.json({message "Ok"}) Is there a way to wait for the twilioIvrService response? I…
Fernando
  • 15
  • 6