/ SDKs / iOS
SDKs
Chat SDKs iOS v4
Chat SDKs iOS
Chat SDKs
iOS
Version 4

Freeze and unfreeze a channel

Copy link

Open channels and group channels can be freezed and unfreezed. When a channel is freezed, only the operators can send messages to the channel and users aren't allowed to chat.

An open channel can be freezed only by using Chat API or on Sendbird Dashboard. To freeze an open channel, go to Chat > Open channels on the dashboard, select an open channel you want to freeze, and click the Freeze icon at the upper right corner. To unfreeze, select the frozen channel and click the Freeze icon again.

Group channels can be freezed by operators using the Chat SDK as shown in the code below.

// Freeze a channel.
channel.freeze { error in
    guard error == nil else {
        // Handle error.
        return
    }

    // The channel is frozen.
    // You can send a message to announce that
    // chat in the channel is unavailable,
    // or do something in response to a successful operation.
}

// Unfreeze a channel.
channel.unfreeze { error in
    guard error == nil else {
        // Handle error.
        return
    }

    // The channel is unfrozen.
    // You can send a message to announce that
    // chat in the channel is available,
    // or do something in response to a successful operation.
}