Questions tagged [twilio-conversations]

Twilio Conversations is an API for building multi-channel conversation-applications using Twilio platform services for a unified communication using chat, SMS, whatsapp, etc.

137 questions
0
votes
0 answers

Twilio Conversations requirement to send messages to all participants except one

I am using Twilio Conversation SDK in ReactJS project and that is working pretty fine for one to one participants. Now we have a new requirement, where there will be at least 5 participants in a Group Conversation and most often than not all these…
Sanjib Behera
  • 101
  • 1
  • 13
0
votes
1 answer

Can't find any way to call lastReadMessageIndex Method

I'm developing an endpoint in my nodeJs backend project and I can't find any way to call the lasReadMessageIndex Method. I read the horizon documentation and there says: The same lastReadMessageIndex is also available from the REST API and can also…
ealvess
  • 519
  • 5
  • 12
0
votes
0 answers

Twilio conversations webhook pass payload

I am calling a webhook that I configured in the Twilio Console. When I don't pass a payload it hits the breakpoint on the backend. However, I am not able to pass data. This is were I tried to catch the body of the message that was sent. Does…
IvoL
  • 93
  • 1
  • 8
0
votes
1 answer

Broadcast-like chat using Twilio

I'm using Twilio Conversations for a chat service in my project. Currently, we have only normal 1-to-1 chat which is handled using frontend SDKs. It's working properly. My new requirement is something like WhatsApp broadcast: the sender can send…
0
votes
0 answers

Caused by: java.lang.ClassNotFoundException: Didn't find class "io.ktor.client.features.json.JsonFeature"

I was using Twilio conversation "com.twilio:conversations-android:1.4.1" and it was working fine but when I updated it to "com.twilio:conversations-android:2.0.0" I am facing the below issue. W/System.err: java.lang.NoClassDefFoundError: Failed…
0
votes
1 answer

Conflict error using twilio conversations react?

I'm using Twilio conversations, First participant and second participant are OK channelName is OK Token is OK The conversation of the user is shown on (the app with no problem) but on web I'm getting error below Code > const onConversationJoined…
0
votes
0 answers

How to turn off specific push notification in ios

I want to off specific one push notification from code. Is this possible? Push comes from twillio conversation. willPresent with this method off only while app is active. Completionhandler([.sound, .alert, .badge]) In my app that type toggle…
0
votes
0 answers

@twilio/conversations connected but forbids adding new participants

I am using the @twilio/conversations library in a NextJS + React application. After successfully connecting with an Access Token, I am able to interact with the Client object normally and get participants, conversations, users, etc. import { Client…
0
votes
1 answer

Fetching Twilio channel with new Conversations API

I have an application which is using old Chat API and in the documentation for Chat Channel Migration I saw that channels are automatically migrated to new Conversations API if they have a private type. Today I tried creating a private channel and…
Nikola Stojaković
  • 2,257
  • 4
  • 27
  • 49
0
votes
1 answer

How do you fetch a closed conversation using javascript sdk?

When I try to fetch a closed Twilio Conversation on the frontend (using JS SDK) I get a "Not found" error. Is it possible to fetch closed conversations? My goal is to allow the user to close a conversation, but still be able to access the message…
Lee Overy
  • 437
  • 5
  • 13
0
votes
1 answer

Can I duplicate a Twilio conversation?

I have a specific use case in which I need to replace an SMS participant in a conversation (my conversations have one and only one SMS participant and several chat participants). The ideal solution for this use case is not to simply remove the SMS…
Cesar
  • 707
  • 3
  • 13
0
votes
1 answer

When a Conversation is deleted, are the Messages in the conversation also deleted, or do I have to explicitly delete each message?

When tearing down a Conversation, I am: Removing the Participant from the Conversation (Participant.Delete) Deleting the User (UserResource.Delete) Deleting the Conversation (ConversationResource.Delete) Are the messages (IMXXX...) in the…
tcbeaton
  • 85
  • 7
0
votes
1 answer

How to handle auth-token and api-keys for dynamically created sub-accounts

In a different question, it was recommended that for ISVs, we create a new subaccount for each customer-organization. See: https://stackoverflow.com/a/73310624/4816322. This brought up a few more questions. Assumption: I'm assuming that for APIs…
RvPr
  • 1,074
  • 1
  • 9
  • 26
0
votes
3 answers

Can you get User SID of the members in a Conference Channel?

I am building an application that will (1) create a conversation (chat), (2) create two users, then add the two users to the conversation. This part is working. At a future time, given the Conversation SID (CHXXX...), I would like to remove the…
tcbeaton
  • 85
  • 7
0
votes
1 answer

Read multiple conversations resources - page size?

My question is about the following…
RvPr
  • 1,074
  • 1
  • 9
  • 26