Layer 224
ChannelsSetDiscussionGroup
Associate a group to a channel as discussion group for that channel
method
Users
channels.setDiscussionGroup#40582bb2 broadcast:InputChannel group:InputChannel = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Broadcast | InputChannel | Channel |
| Group | InputChannel | Discussion group to associate to the channel |
Returns
BoolGogram Example
// ChannelsSetDiscussionGroup - positional arguments result, err := client.ChannelsSetDiscussionGroup(&tg.InputChannel{ChannelID: int64(1234567890), AccessHash: int64(5678901234567890)}, &tg.InputChannel{ChannelID: int64(1234567890), AccessHash: int64(5678901234567890)}) if err != nil { // handle error } // result is *tg.Bool
Possible Errors
| Code | Type | Description |
|---|---|---|
| 400 | BROADCAST_ID_INVALID | Broadcast ID invalid. |
| 400 | CHANNEL_INVALID | The provided channel is invalid. |
| 400 | CHAT_ADMIN_REQUIRED | You must be an admin in this chat to do this. |
| 403 | CHAT_WRITE_FORBIDDEN | You can't write in this chat. |
| 400 | LINK_NOT_MODIFIED | Discussion link not modified. |
| 400 | MEGAGROUP_ID_INVALID | Invalid supergroup ID. |
| 400 | MEGAGROUP_PREHISTORY_HIDDEN | Group with hidden history for new members can't be set as discussion groups. |