delete_contacts()#
- Client.delete_contacts()#
Delete contacts from your Telegram address book.
Usable by Users Bots- Parameters:
user_ids (
int
|str
| List ofint
orstr
) – A single user id/username or a list of user identifiers (id or username).- Returns:
User
| List ofUser
|None
– In case user_ids was an integer or a string, a single User object is returned. In case user_ids was a list, a list of User objects is returned. In case nothing changed after calling the method (for example, when deleting a non-existent contact), None is returned.
Example
await app.delete_contacts(user_id) await app.delete_contacts([user_id1, user_id2, user_id3])