Channels created from api not showing in the App

We are not able to get chat list in the Iphone App, whenever channel are created from backend using .NET.
On app side we are using SendBirdUIKit to show the Chat List or Channel List Screen.
We are using Swift language for IOS.

Here is code snippet that we tried to show ChannelList:

        let mainVC = SBUGroupChannelListViewController()
        let naviVC = UINavigationController(rootViewController: mainVC)
        naviVC.modalPresentationStyle = .fullScreen
        present(naviVC, animated: true)

Hello @vashisht,

If the channels are empty, this is expected. By default we do not return empty channels (channels that contain no messages). If you want to display empty channels, you will need to pass in a custom channelListQuery that includes empty channels.