Link Search Menu Expand Document

Method: phone.createConferenceCall

Back to methods index

Create and optionally join a new conference call.

Parameters:

NameTypeDescriptionRequired
mutedBoolIf set, mute our microphone when joining the call (can only be used if join is set).Optional
video_stoppedBoolIf set, our video stream is disabled (can only be used if join is set).Optional
joinBoolIf set, also join the call, otherwise just create the call link.Optional
public_keyint256Public key (can only be used if join is set).Optional
blockbytesInitial blockchain block (can only be used if join is set).Optional
paramsDataJSONParameters from tgcalls (can only be used if join is set).Optional

Return type: Updates

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

$Updates = $MadelineProto->phone->createConferenceCall(muted: $Bool, video_stopped: $Bool, join: $Bool, public_key: $int256, block: 'bytes', params: $DataJSON, );