phone.getGroupParticipants

Get group call participants.

phone.groupParticipants#f47751b6 count:int participants:Vector<GroupCallParticipant> next_offset:string chats:Vector<Chat> users:Vector<User> version:int = phone.GroupParticipants;
---functions---
phone.getGroupParticipants#c558d8ab call:InputGroupCall ids:Vector<InputPeer> sources:Vector<int> offset:string limit:int = phone.GroupParticipants;

Parameters

Name Type Description
call InputGroupCall Group call whose participants should be fetched
ids Vector<InputPeer> If specified, will fetch group participant info about the specified peers
sources Vector<int> If specified, will fetch group participant info about the specified WebRTC source IDs
offset string Offset for results, taken from the next_offset field of phone.groupParticipants or the participants_next_offset field of phone.groupCall, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in phone.groupParticipants if it is empty, to avoid an infinite loop.
limit int Maximum number of results to return, see pagination

Result

phone.GroupParticipants

Only users can use this method

Possible errors

Code Type Description
400 GROUPCALL_INVALID The specified group call is invalid.

Related pages

phone.groupParticipants

Contains a page of group call participants, see getting info about a group call ».

phone.groupCall

Contains group call information and an initial participant page, see getting info about a group call ».

Pagination in the API

How to fetch results from large lists of objects.

Group calls

How to start, join and manage group calls and video chats.