get_message_read_participants()¶
- async Client.get_message_read_participants()¶
Get the list of participants who read a specific message in a chat.
Usable by Users Bots- Parameters:
chat_id (
int|str) – Unique identifier (int) or username (str) of the target chat.message_id (
int) – Identifier of the message.
- Returns:
List of
ReadParticipantDate– On success, a list of participants and read dates is returned.
Example
# Get read participants of a message readers = await app.get_message_read_participants(chat_id, message_id) for reader in readers: print(reader.user_id, reader.date)