channels.toggleJoinRequest
Set whether all users should request admin approval to join the group ».
func (c *Client) ChannelsToggleJoinRequest(ctx context.Context, request *ChannelsToggleJoinRequestRequest) (UpdatesClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.ChannelsToggleJoinRequest(ctx, &tg.ChannelsToggleJoinRequestRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // UpdatesClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ApplyToInvites | bool | — | ApplyToInvites field of ChannelsToggleJoinRequestRequest. |
Channel | InputChannelClass | yes | Group |
Enabled | bool | — | Toggle |
GuardBot | InputUserClass | — | GuardBot field of ChannelsToggleJoinRequestRequest. |
Returns
Possible errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_INVALID | The provided channel is invalid. |
| 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_PUBLIC_REQUIRED | You can only enable join requests in public groups. |
References
- Official documentation
- Generated Go reference
- TL definition:
channels.toggleJoinRequest#ecc2618