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

Retrieve a list of channels

Copy link

You can obtain a list of all open channels by creating a SBDOpenChannelListQuery. The LoadNextPage() method returns a list of SBDOpenChannel objects. For group channels, you can get a list of the current user's group channels, using the SBDGroupChannelListQuery instance's LoadNextPage() method which returns a list of SBDGroupChannel objects.

Note: For group channels, you can also set an option to include empty channels with query.include_empty_channel = true. Empty channels are channels that have been created but doesn't contain sent messages. By default, empty channels are not shown.

Open channelGroup channel
SBDOpenChannelListQuery* query = SBDOpenChannel::CreateOpenChannelListQuery();

query->LoadNextPage([](vector<SBDOpenChannel*> openChannels, SBDError* error) {
    if (error != nullptr) {
        // Handle error.
        return;
    }
});