Layer 220
method Users Bots
messages.editChatTitle#73783ffd chat_id:long title:string = Updates;

Parameters

Name Type Description
ChatId long Chat ID
Title string New chat name, different from the old one

Returns

Updates

Possible Errors

Code Type Description
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_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.
400 PEER_ID_INVALID The provided peer id is invalid.

Gogram Example

// MessagesEditChatTitle - positional arguments
result, err := client.MessagesEditChatTitle(int64(0), "...")
if err != nil {
    // handle error
}
// result is *tg.Updates