Message.get_read_participants()

async Message.get_read_participants()[source]

Bound method get_read_participants of Message.

Use as a shortcut for:

client.get_message_read_participants(
    chat_id=message.chat.id,
    message_id=message.id
)

Example

readers = await message.get_read_participants()
for reader in readers:
    print(reader.user_id, reader.date)
Returns:

List of ReadParticipantDate – On success, a list of participants and read dates is returned.