Layer 220
ChannelsEditTitle
Edit the name of a channel/supergroup
method
Users
Bots
channels.editTitle#566decd0 channel:InputChannel title:string = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Channel | InputChannel | Channel/supergroup |
| Title | string | New name |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_INVALID | The provided channel is invalid. |
| 400 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup. |
| 403 | CHAT_ADMIN_REQUIRED | You must be an admin in this chat to do this. |
| 400 | CHAT_INVALID | Invalid chat. |
| 400 | CHAT_NOT_MODIFIED | No changes were made to chat information because the new information you passed is identical to the current information. |
| 400 | CHAT_TITLE_EMPTY | No chat title provided. |
| 403 | CHAT_WRITE_FORBIDDEN | You can't write in this chat. |
Gogram Example
// ChannelsEditTitle - positional arguments result, err := client.ChannelsEditTitle(&tg.InputChannel{ChannelID: int64(123456789), AccessHash: int64(0)}, "...") if err != nil { // handle error } // result is *tg.Updates