Link Search Menu Expand Document

Method: phone.getGroupCallChainBlocks

Back to methods index

Fetch the blocks of a conference blockchain ».

Parameters:

NameTypeDescriptionRequired
callInputGroupCallThe conference.Yes
sub_chain_idintSubchain ID.Optional
offsetintOffset for pagination.Optional
limitintMaximum number of blocks to return in this call, see paginationOptional

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->getGroupCallChainBlocks(call: $InputGroupCall, sub_chain_id: $int, offset: $int, limit: $int, );