Interface GetGroupCallInviteLink

Returns invite link to a video chat in a public chat. Request type for Tdjson#getGroupCallInviteLink.

interface GetGroupCallInviteLink {
    @type: "getGroupCallInviteLink";
    can_self_unmute?: boolean;
    group_call_id: number;
}

Properties

@type: "getGroupCallInviteLink"
can_self_unmute?: boolean

Pass true if the invite link needs to contain an invite hash, passing which to joinGroupCall would allow the invited user to unmute themselves. Requires groupCall.can_be_managed group call flag.

group_call_id: number

Group call identifier.