Manage Channel Members
1. Invite Users
You can invite members to the channel even if you are not the owner.
TPChannel? channel = await TalkPlusAPI.addMemberToChannel(
tpChannel,
targetIds,
errorCallback: (errorCode, errorMessage){}
);2. Remove Members
TPChannel? channel = await TalkPlusAPI.removeMemberToChannel(
tpChannel,
targetIds,
errorCallback: (errorCode, errorMessage){}
);3. Get Channel Member List
4. Ban Users
5. Unban Users
6. Mute Members
Mute feature allows the channel owner to mute specific members in the channel. Muted members are not allowed to send messages.
7. Unmute Members
8. Peer Mute
You can mute another member in the channel.
9. Peer Unmute
10. Get Peer Muted List
Last updated