I am trying to define a period of time (lets say 10 minutes, that stores all responses after a certain widget), and then save all those replies into one variable. Is this possible to do with twilio studio?
Example:
BOT: [sends message]
//start time - 0 min
USER: [reply1]
USER: [reply2]
USER: [reply3]
//end time - 10 min
finalString = reply1+reply2+reply3...reply i
Then I'd like to send that via HTTP POST request (This part seems to be easy if the values are all stored). But I'd want the HTTP request to execute after the 10 minutes, if there is at least one reply.
Any Twilio Evangelists that could help me out?