đ§ answer_chat_join_request_query
Use this method to answer a chat join request query.
âī¸ Parameters
chat_id(intorstr): Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)user_id(int): Unique identifier of the target userquery_id(str): Unique identifier of the query to be answeredtext(str) (optional): Optional. Text of the answershow_alert(bool) (optional): Optional. If True, an alert will be shown to the userurl(str) (optional): Optional. URL that will be opened by the user
đ˛ Returns
bool
đ Examples
-đĒĢ Required Parameters
await bot.answer_chat_join_request_query(
chat_id=your_chat_id_here,
user_id=your_user_id_here,
query_id=your_query_id_here
)
-đ All Parameters
await bot.answer_chat_join_request_query(
chat_id=your_chat_id_here,
user_id=your_user_id_here,
query_id=your_query_id_here,
text=your_text_here,
show_alert=your_show_alert_here,
url=your_url_here
)