telegram-bot-api-7.0: Easy to use library for building Telegram bots. Exports Telegram Bot API.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Telegram.Bot.API.Methods.RevokeChatInviteLink

Synopsis

revokeChatInviteLink

type RevokeChatInviteLink = "revokeChatInviteLink" :> (RequiredQueryParam "chat_id" SomeChatId :> (RequiredQueryParam "invite_link" Text :> Post '[JSON] (Response ChatInviteLink))) Source #

revokeChatInviteLink Source #

Arguments

:: SomeChatId

Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)

-> Text

The invite link to revoke

-> ClientM (Response ChatInviteLink) 

Use this method to revoke an invite link created by the bot. If the primary link is revoked, a new link is automatically generated. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the revoked invite link as ChatInviteLink object.