Skip to content

unbanChatMember

Returns boolean

Use this method to unban a previously banned user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be removed from the chat. If you don’t want this, use the parameter only_if_banned.

Required: chat_id, user_id · Optional: 1 parameters

Try it
Token saved
Response

TypeScript example · @effect-ak/tg-bot-client
import { makeTgBotClient } from "@effect-ak/tg-bot-client"
const client = makeTgBotClient({ bot_token: "YOUR_BOT_TOKEN" })
const result = await client.execute("unban_chat_member", {
chat_id: "YOUR_CHAT_ID",
user_id: 0
})

Parameters

chat_id number | string Required
Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername).

user_id number Required
Unique identifier of the target user.

only_if_banned boolean
Do nothing if the user is not banned.

unbanChatSenderChat