DeleteSavedHistoryRequest

Both users and bots may be able to use this request. See code examples.

---functions---
messages.deleteSavedHistory#6e98102b flags:# peer:InputPeer max_id:int min_date:flags.2?date max_date:flags.3?date = messages.AffectedHistory

Returns

messages.AffectedHistory

This type can only be an instance of:

AffectedHistory

Parameters

peerInputPeerAnything entity-like will work if the library can find its Input version (e.g., usernames, Peer, User or Channel objects, etc.).
max_idint
min_datedateThis argument defaults to None and can be omitted.
max_datedateThis argument defaults to None and can be omitted.

Known RPC errors

This request can't cause any RPC error as far as we know.

Example

from telethon.sync import TelegramClient
from telethon import functions, types

with TelegramClient(name, api_id, api_hash) as client:
    result = client(functions.messages.DeleteSavedHistoryRequest(
        peer='username',
        max_id=0,
        min_date=datetime.datetime(2018, 6, 25),
        max_date=datetime.datetime(2018, 6, 25)
    ))
    print(result.stringify())