/ SDKs / Unreal
SDKs
Chat SDKs Unreal v3
Chat SDKs Unreal
Chat SDKs
Unreal
Version 3

Retrieve number of group channels with unread messages

Copy link

By following the implementation below, you can retrieve the total number of a user's joined group channels that has one or more unread messages.

SBDMain::GetTotalUnreadChannelCount([](int total_unread_channel_count, SBDError* error) {
    if (error != nullptr) {
        // Handle error.
        return;
    }
});