MadelineProtoDocs/docs/API_docs/methods/messages.getExportedChatInvites.md
2024-05-01 14:53:46 +02:00

2.0 KiB

title description grand_parent parent image redirect_from
messages.getExportedChatInvites Get info about the chat invites of a specific chat Telegram RPC API Methods https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_getExportedChatInvites.html

Method: messages.getExportedChatInvites

Back to methods index

Get info about the chat invites of a specific chat

Parameters:

Name Type Description Required
revoked Bool Whether to fetch revoked chat invites Optional
peer Username, chat ID, Update, Message or InputPeer Chat Optional
admin_id Username, chat ID, Update, Message or InputUser Whether to only fetch chat invites from this admin Optional
offset_date int Offsets for pagination, for more info click here Optional
offset_link string Offsets for pagination, for more info click here Optional
limit int Maximum number of results to return, see pagination Optional

Return type: messages.ExportedChatInvites

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$messages_ExportedChatInvites = $MadelineProto->messages->getExportedChatInvites(revoked: $Bool, peer: $InputPeer, admin_id: $InputUser, offset_date: $int, offset_link: 'string', limit: $int, );