exportChatInviteLink¶
Returns: str
- class aiogram.methods.export_chat_invite_link.ExportChatInviteLink(*, chat_id: int | str, **extra_data: Any)[source]¶
Use this method to generate a new primary invite link for a chat; any previously generated primary link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the new invite link as String on success.
Note: Each administrator in a chat generates their own invite links. Bots can’t use invite links generated by other administrators. If you want your bot to work with invite links, it will need to generate its own link using
aiogram.methods.export_chat_invite_link.ExportChatInviteLinkor by calling theaiogram.methods.get_chat.GetChatmethod. If your bot needs to generate a new primary invite link replacing its previous one, useaiogram.methods.export_chat_invite_link.ExportChatInviteLinkagain.Source: https://core.telegram.org/bots/api#exportchatinvitelink
- chat_id: ChatIdUnion¶
Unique identifier for the target chat or username of the target channel (in the format
@channelusername)
Usage¶
As bot method¶
result: str = await bot.export_chat_invite_link(...)
Method as object¶
Imports:
from aiogram.methods.export_chat_invite_link import ExportChatInviteLinkalias:
from aiogram.methods import ExportChatInviteLink
With specific bot¶
result: str = await bot(ExportChatInviteLink(...))
As reply into Webhook in handler¶
return ExportChatInviteLink(...)