đ§ verify_user
Verifies a user on behalf of the organization which is represented by the bot. Returns True on success.
âī¸ Parameters
user_id
(int
): Unique identifier of the target usercustom_description
(str
) (optional
): UCustom description for the verification; 0-70 characters. Must be empty if the organization isn't allowed to provide a custom verification description.
đ˛ Returns
bool
đ Examples
-đĒĢ Required Parameters
await bot.verify_user(
user_id=your_user_id_here
)
-đ All Parameters
await bot.verify_user(
user_id=your_user_id_here,
custom_description=your_custom_description_here
)