Interface InviteGroupCallParticipant

Invites a user to an active group call; for group calls not bound to a chat only. Sends a service message of the type messageGroupCall. The group call can have at most getOption("group_call_participant_count_max") participants. Request type for Tdjson#inviteGroupCallParticipant.

interface InviteGroupCallParticipant {
    @type: "inviteGroupCallParticipant";
    group_call_id: number;
    is_video?: boolean;
    user_id: number;
}

Properties

@type: "inviteGroupCallParticipant"
group_call_id: number

Group call identifier.

is_video?: boolean

Pass true if the group call is a video call.

user_id: number

User identifier.