phone.GetGroupCallChainBlocks

class pyrogram.raw.functions.phone.GetGroupCallChainBlocks

Fetch the blocks of a conference blockchain ».

Details:
  • Layer: 223

  • ID: EE9F88A6

Parameters:
  • call (InputGroupCall) – The conference.

  • sub_chain_id (int 32-bit) – Subchain ID.

  • offset (int 32-bit) – Offset for pagination.

  • limit (int 32-bit) – Maximum number of blocks to return in this call, see pagination

Returns:

Updates

TL Schema

phone.getGroupCallChainBlocks#ee9f88a6
call:InputGroupCall
sub_chain_id:int
offset:int
limit:int

= Updates

Parameter Tree

GetGroupCallChainBlocks
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
├── sub_chain_idint
├── offsetint
└── limitint

Example

await app.invoke(
    GetGroupCallChainBlocks(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        sub_chain_id=0,
        offset=0,
        limit=0,
    )
)