Home > Blockchain >  Azure Communication Services - Delete 3rd Party Chat Messages
Azure Communication Services - Delete 3rd Party Chat Messages

Time:07-22

I am trying to implement a chat functionality using azure communication services. One special use case is, that this chat must be administrated by one single administrative role.

This administrative role called "moderated" shall be allowed to delete selected messages from other chat participants.

Couldn't find a way to do this so far, any recommendations?

CodePudding user response:

This is currently not supported.

Participants don't have write access to messages sent by other participants, which means only the message sender can update or delete their sent messages.

Please refer to the User Access section of the documentation for more details.

You can upvote the Implement basic Roles for the Chat Clients idea if you'd like to see this implemented in the future.

  • Related