Layer 220
method Users
channels.toggleUsername#50f24105 channel:InputChannel username:string active:Bool = Bool;

Parameters

Name Type Description
Channel InputChannel Supergroup or channel
Username string Username
Active Bool Whether to activate or deactivate the username

Returns

Bool

Possible Errors

Code Type Description
400 CHANNEL_INVALID The provided channel is invalid.
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_NOT_MODIFIED No changes were made to chat information because the new information you passed is identical to the current information.
400 USERNAMES_ACTIVE_TOO_MUCH The maximum number of active usernames was reached.
400 USERNAME_INVALID The provided username is not valid.
400 USERNAME_NOT_MODIFIED The username was not modified.

Gogram Example

// ChannelsToggleUsername - positional arguments
result, err := client.ChannelsToggleUsername(&tg.InputChannel{ChannelID: int64(123456789), AccessHash: int64(0)}, "...", true)
if err != nil {
    // handle error
}
// result is *tg.Bool