Interface GetChatInviteLinkMembers

Returns chat members joined a chat via an invite link. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links. Request type for Tdjson#getChatInviteLinkMembers.

interface GetChatInviteLinkMembers {
    @type: "getChatInviteLinkMembers";
    chat_id: number;
    invite_link: string;
    limit: number;
    offset_member: ChatInviteLinkMember;
    only_with_expired_subscription?: boolean;
}

Properties

@type: "getChatInviteLinkMembers"
chat_id: number

Chat identifier.

invite_link: string

Invite link for which to return chat members.

limit: number

The maximum number of chat members to return; up to 100.

offset_member: ChatInviteLinkMember

A chat member from which to return next chat members; pass null to get results from the beginning.

only_with_expired_subscription?: boolean

Pass true if the link is a subscription link and only members with expired subscription must be returned.