Update a channel
Updates an existing channel. The ‘properties’ are specified as a raw json string. The valid properties are the ‘ChannelRequest’ object of the official documentation. Such as ‘team’, ‘frozen’, ‘disabled’ or any custom property. https://getstream.io/chat/docs/rest/#channels-updatechannel
stream-cli chat update-channel --type [channel-type] --id [channel-id] --properties [raw-json-properties] [flags]
# Unfreeze a channel
$ stream-cli chat update-channel --type messaging --id redteam --properties "{\"frozen\":false}"
-h, --help help for update-channel
-i, --id string [required] Channel id
-p, --properties string [required] Channel properties to update
-t, --type string [required] Channel type such as 'messaging' or 'livestream'
--app string [optional] Application name to use as it's defined in the configuration file
--config string [optional] Explicit config file path