Questions tagged [twilio-programmable-chat]

For questions about Twilio's text chat APIs. This is distinct from their voice chat or SMS messaging APIs, which should be tagged as "twilio-api".

Programmable Chat which is part of Twilio solutions:

Add chat to any app with SDKs for mobile and web. Powered by the Twilio cloud.

Site: https://www.twilio.com/chat

Docs: https://www.twilio.com/docs/api/chat

383 questions
0
votes
1 answer

How to stop a Twilio Autopilot Dialogue on a custom chat channel programmatically?

I am implementing end-to-end tests for a Twilio Autopilot bot. I start the conversation with the bot using a custom chat channel, by making an HTTP POST to this…
Daniel Gabriel
  • 3,939
  • 2
  • 26
  • 37
0
votes
0 answers

Forward messages in twilio programable chat

I have integrated Twilio's programmable chat in my application now I want to forward the same messages that I have in my one channel to another channel. is there a way to do so? I know I can create a new message with the data in this message and…
aliraza12636
  • 395
  • 3
  • 16
0
votes
0 answers

Twilio Autopilot with Whatsapp wrong message order

I am using Twilio Autopilot + Functions to build a chat bot. If I use Whatsapp i have an issue with the order of my messages if I send a URL. I assume this is because Whatsapp is processing the URL, which takes more time than the next message. I…
0
votes
2 answers

How to retrieve all messages in a Twilio Programmable Chat Channel?

privatechannel.getMessages().then(function (messages) { const totalMessages = messages.items.length; for (let i = 0; i < totalMessages; i++) { const message = messages.items[i]; console.log('Author:' + messages.author); …
Roast Biter
  • 651
  • 1
  • 6
  • 22
0
votes
1 answer

Twilio authentication with access token

curl -X "GET" "https://chat.twilio.com/v2/Services/ISXXXXX/Channels/CHXXXXX/Messages" \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Authorization: Bearer ACCESS_TOKEN' \ I am trying to fetch Twilio chat messages as above but, I am…
maskapsiz
  • 244
  • 5
  • 23
0
votes
2 answers

Error: There was a problem getting the Conversation associated with this room

I'm trying to implement this project: https://github.com/twilio/twilio-video-app-react I got error "There was a problem getting the Conversation associated with this room." when the ChatProvider did mount. Seem like chatClient can't find the…
dungreact
  • 442
  • 1
  • 9
  • 22
0
votes
1 answer

Twilio call hold is not working as expected

I am using Twilio to call my customers from my Twilio client and want to put the user on hold whenever is needed. For that i am calling RESTAPI whenever user clicks on the "Hold" Button. But after calling the method call is getting disconnected for…
0
votes
2 answers

how to send excel file by using twilio in C#

below is my code to send Excel file TwilioClient.Init(AccountSid, AuthToken); var mediaUrl = new List(); if (!string.IsNullOrEmpty(UriString)) { mediaUrl = new[] { new…
0
votes
1 answer

Twilio JS SDK Unable to get the status change of call

I am using Twilio JS SDKs in my Angular application to call my customers. I have a requirement to show the status of the call on the UI(Ringing/Inprogress/completed). For that I have seen some documents to use StatusCallBack web hooks, but how will…
0
votes
0 answers

Twilio Webchat restart conversation

I want to restart the conversation of Twilio Webchat whenever I want. It only restars when is sent to a Flex agent and the agent concludes the conversation. But if the conversation doesnt´t sends to the agent, then there is no way to restart, the…
A. Asensio
  • 25
  • 5
0
votes
2 answers

Twilio Flex Webchat welcome message

I want to change the default WelcomeMessage of Twilio Flex Webchat. I´m running webchat from npm package. Below is my webchat-appConfig.js code. When I execute it, the webchat loads but the WelcomeMessage doesn´t change. var appConfig = { …
A. Asensio
  • 25
  • 5
0
votes
1 answer

Problem with Twilio performing their sample code

I am trying to recreate the example on the Twilio site:…
rsirota
  • 321
  • 3
  • 15
0
votes
1 answer

Twilio TaskRouter - ordering workers by assigned_tasks

I'm passing by an issue on my Twilio TaskRouter configuration. The thing is that I need to address an incoming task to the worker who has lesser tasks assigned to him/her, not to the longest idle worker (as is the default). According to Twilio's…
0
votes
0 answers

How a participant be a part of multiple conversations in Twilio

How a participant is a part of multiple conversations in Twilio. I am trying to add one participant in multiple conversations in Twilio. Please help me.
0
votes
1 answer

Is there any way to do flutter and twilio chat?

Flutter and Twilio chat integration? Twilio released separately android and ios. any other alternative is there for Flutter?