EditTitleRequest
Both users and bots can use this request. See code examples.
---functions--- channels.editTitle#566decd0 channel:InputChannel title:string = Updates
Returns
Updates |
This type can be an instance of either:
UpdateShort | UpdateShortChatMessage |
UpdateShortMessage | UpdateShortSentMessage |
Updates | UpdatesCombined |
UpdatesTooLong |
Parameters
channel | InputChannel | Anything entity-like will work if the library can find its Input version (e.g., usernames, Peer , User or Channel objects, etc.). |
title | string |
Known RPC errors
This request can cause 3 known errors:
ChannelInvalidError | Invalid channel object. Make sure to pass the right types, for instance making sure that the request is designed for channels or otherwise look for a different one more suited. |
ChatAdminRequiredError | Chat admin privileges are required to do that in the specified chat (for example, to send a message in a channel which is not yours), or invalid permissions used for the channel or group. |
ChatNotModifiedError | The chat or channel wasn't modified (title, invites, username, admins, etc. are the same). |
You can import these from telethon.errors
.
Example
from telethon.sync import TelegramClient from telethon import functions, types with TelegramClient(name, api_id, api_hash) as client: result = client(functions.channels.EditTitleRequest( channel='username', title='My awesome title' )) print(result.stringify())