Layer 220
ChannelsTogglePreHistoryHidden
Hide/unhide message history for new channel/supergroup users
method
Users
channels.togglePreHistoryHidden#eabbb94c channel:InputChannel enabled:Bool = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Channel | InputChannel | Channel/supergroup |
| Enabled | Bool | Hide/unhide |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_INVALID | The provided channel is invalid. |
| 400 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup. |
| 400 | CHAT_ADMIN_REQUIRED | You must be an admin in this chat to do this. |
| 400 | CHAT_ID_INVALID | The provided chat id is invalid. |
| 400 | CHAT_LINK_EXISTS | The chat is public, you can't hide the history to new users. |
| 400 | CHAT_NOT_MODIFIED | No changes were made to chat information because the new information you passed is identical to the current information. |
| 400 | FORUM_ENABLED | You can't execute the specified action because the group is a forum, disable forum functionality to continue. |
Gogram Example
// ChannelsTogglePreHistoryHidden - positional arguments result, err := client.ChannelsTogglePreHistoryHidden(&tg.InputChannel{ChannelID: int64(123456789), AccessHash: int64(0)}, true) if err != nil { // handle error } // result is *tg.Updates