Layer 227
PhoneGetGroupCall
Get info about a group call and its participants.
method
Users
phone.getGroupCall#41845db call:InputGroupCall limit:int = phone.GroupCall;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | Group call of any type to fetch |
| Limit | int | Maximum number of participants to return in this call (0 to return a server-defined amount). If the number of returned participants is less than group Call. participants_count, paginate through the remaining participants using phone. get Group Participants, passing to offset the phone. group Call. participants_next_offset returned by this call. This parameter behaves in a different way compared to the limit of phone. get Group Participants, see here for more info. |
Returns
phone.GroupCallGogram Example
// PhoneGetGroupCall - positional arguments result, err := client.PhoneGetGroupCall(&tg.InputGroupCall{}, 42) if err != nil { // handle error } // result is *tg.PhoneGroupCall
Possible Errors
| Code | Type | Description |
|---|---|---|
| 403 | GROUPCALL_FORBIDDEN | The group call has already ended. |
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |