Link Search Menu Expand Document

Method: phone.exportGroupCallInvite

Back to methods index

Get an invite link for a group call or livestream

Parameters:

NameTypeDescriptionRequired
can_self_unmuteBoolFor livestreams or muted group chats, if set, users that join using this link will be able to speak without explicitly requesting permission by (for example by raising their hand).Optional
callInputGroupCallThe group callYes

Return type: phone.ExportedGroupCallInvite

Can users use this method: YES

Can bots use this method: NO

Can bots use this method over a business connection with the businessConnectionId flag: 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();

$phone_ExportedGroupCallInvite = $MadelineProto->phone->exportGroupCallInvite(can_self_unmute: $Bool, call: $InputGroupCall, );