Link Search Menu Expand Document

Method: chatlists.editExportedInvite

Back to methods index

Edit a chat folder deep link ».

Parameters:

NameTypeDescriptionRequired
chatlistInputChatlistFolder IDYes
slugstringslug obtained from the chat folder deep link ».Optional
titlestringIf set, sets a new name for the linkOptional
peersArray of Username, chat ID, Update, Message or InputPeerIf set, changes the list of peers shared with the linkOptional

Return type: ExportedChatlistInvite

Can bots use this method: YES

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

$ExportedChatlistInvite = $MadelineProto->chatlists->editExportedInvite(chatlist: $InputChatlist, slug: 'string', title: 'string', peers: [$InputPeer, $InputPeer], );