Link Search Menu Expand Document

Method: messages.getExportedChatInvites

Back to methods index

Get info about the chat invites of a specific chat

Parameters:

NameTypeDescriptionRequired
revokedBoolWhether to fetch revoked chat invitesOptional
peerUsername, chat ID, Update, Message or InputPeerChatOptional
admin_idUsername, chat ID, Update, Message or InputUserWhether to only fetch chat invites from this adminOptional
offset_dateintOffsets for pagination, for more info click hereOptional
offset_linkstringOffsets for pagination, for more info click hereOptional
limitintMaximum number of results to return, see paginationOptional

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, );