I'm having trouble creating a 4-people conversation in twilio when 3-people conversations already exist:
- given a conversation C1 with the following participants: P1, P2, P3.
- given a conversation C2 with the following participants: P1, P2, P4.
- creating a conversation C3 with the following participants: P1, P2, P3, P4 throws an error: [409] Group MMS with given participant list already exists as Conversation. https://www.twilio.com/docs/errors/50438
I'm using php twilio sdk(5.41.1) to first create a conversation resource and then create participant resources one by one in a loop. The error happens when adding P3 because at this point C3's participant list is identical to that of C1.
Is there a way to get around this issue?