Layer 220
PhoneGetGroupCallChainBlocks
Fetch the blocks of a conference blockchain.
method
Users
phone.getGroupCallChainBlocks#ee9f88a6 call:InputGroupCall sub_chain_id:int offset:int limit:int = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | The conference. |
| SubChainId | int | Subchain ID. |
| Offset | int | Offset for pagination. |
| Limit | int | Maximum number of blocks to return in this call, see pagination |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |
Gogram Example
// PhoneGetGroupCallChainBlocks - positional arguments result, err := client.PhoneGetGroupCallChainBlocks(&tg.InputGroupCall{}, 0, 0, 0) if err != nil { // handle error } // result is *tg.Updates