Layer 220
method Users
channels.editCreator#8f38cd1f channel:InputChannel user_id:InputUser password:InputCheckPasswordSRP = Updates;

Parameters

Name Type Description
Channel InputChannel Channel
UserId InputUser New channel owner
Password InputCheckPasswordSRP 2 FA password of account

Returns

Updates

Possible Errors

Code Type Description
400 CHANNELS_ADMIN_PUBLIC_TOO_MUCH You're admin of too many public channels, make some channels private to change the username of this channel.
400 CHANNEL_MONOFORUM_UNSUPPORTED Monoforums do not support this feature.
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_MEMBER_ADD_FAILED Could not add participants.
400 CHAT_NOT_MODIFIED No changes were made to chat information because the new information you passed is identical to the current information.
403 CHAT_WRITE_FORBIDDEN You can't write in this chat.
400 PASSWORD_HASH_INVALID The provided password hash is invalid.
400 PASSWORD_MISSING You must enable 2 FA before executing this operation.
400 PASSWORD_TOO_FRESH_%d The password was modified less than 24 hours ago, try again in <number> seconds.
400 SESSION_TOO_FRESH_%d This session was created less than 24 hours ago, try again in <number> seconds.
400 SRP_ID_INVALID Invalid SRP ID provided.
400 USER_ID_INVALID The provided user ID is invalid.
403 USER_PRIVACY_RESTRICTED The user's privacy settings do not allow you to do this.

Gogram Example

// ChannelsEditCreator - positional arguments
result, err := client.ChannelsEditCreator(&tg.InputChannel{ChannelID: int64(123456789), AccessHash: int64(0)}, &tg.InputUserSelf{}, &tg.InputCheckPasswordSrp{})
if err != nil {
    // handle error
}
// result is *tg.Updates