Method: phone.createConferenceCall
Create and optionally join a new conference call.
Parameters:
| Name | Type | Description | Required |
|---|---|---|---|
| muted | Bool | If set, mute our microphone when joining the call (can only be used if join is set). | Optional |
| video_stopped | Bool | If set, our video stream is disabled (can only be used if join is set). | Optional |
| join | Bool | If set, also join the call, otherwise just create the call link. | Optional |
| public_key | int256 | Public key (can only be used if join is set). | Optional |
| block | bytes | Initial blockchain block (can only be used if join is set). | Optional |
| params | DataJSON | Parameters 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, );