pub async fn create_chat_invite_link(
chat_id: i64,
name: String,
expiration_date: i32,
member_limit: i32,
creates_join_request: bool,
client_id: i32,
) -> Result<ChatInviteLink, Error>Expand description
Creates a new invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and can_invite_users right in the chat
ยงArguments
chat_id- Chat identifiername- Invite link name; 0-32 charactersexpiration_date- Point in time (Unix timestamp) when the link will expire; pass 0 if nevermember_limit- The maximum number of chat members that can join the chat via the link simultaneously; 0-99999; pass 0 if not limitedcreates_join_request- Pass true if users joining the chat via the link need to be approved by chat administrators. In this case, member_limit must be 0client_id- The client id to send the request to