Hi,
Is it possble to have the same SessionId on different ParticipantId? I am asking because we are planning to store conversation segments on our table using the primary key formula ConversationId+SessionId+SegmentCounter
I am aware that SessionId can be the same for multiple conversations that were joined by conference but this is fine because we use ConversationId as part of our primary key.
Since segments don't have a unique ID of their own my key for that branch is SessionId + ParticipantId.
You were on the right track but missed the fact the same entity in two conversations will have unique participant ids in each conversation, so if the session gets shared by the conversation it's also shared by the participants.
Hi @Eos_Rios,
Sorry, I didn't make it clear that what I am asking is if it is possible in a single Converstion to have multiple sessions having the same SessionId but different ParticipantId. The result you sent has different ConversationId.
The goal of my question is if to ensure that the key that I am using on my table for segments is correct: ConversationId+SessionId+SegmentCounter.