Interface RevokeChatInviteLink

Revokes invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links. If a primary link is revoked, then additionally to the revoked link returns new primary link. Request type for Tdjson#revokeChatInviteLink.

interface RevokeChatInviteLink {
    @type: "revokeChatInviteLink";
    chat_id: number;
    invite_link: string;
}

Properties

@type: "revokeChatInviteLink"
chat_id: number

Chat identifier.

invite_link: string

Invite link to be revoked.