messages.GetMessageReadParticipants

class pyrogram.raw.functions.messages.GetMessageReadParticipants

Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».

Details:
  • Layer: 223

  • ID: 31C1C44F

Parameters:
  • peer (InputPeer) – Dialog

  • msg_id (int 32-bit) – Message ID

Returns:

List of ReadParticipantDate

TL Schema

messages.getMessageReadParticipants#31c1c44f
peer:InputPeer
msg_id:int

= Vector<ReadParticipantDate>

Parameter Tree

GetMessageReadParticipants
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ │ └── chat_idlong
│ ├── InputPeerUser
│ │ ├── user_idlong
│ │ └── access_hashlong
│ ├── InputPeerChannel
│ │ ├── channel_idlong
│ │ └── access_hashlong
│ │ ├── peerInputPeer
│ │ │ ├── InputPeerEmpty
│ │ │ ├── InputPeerSelf
│ │ │ ├── InputPeerChat
│ │ │ ├── InputPeerUser
│ │ │ ├── InputPeerChannel
│ │ │ ├── InputPeerUserFromMessage
│ │ │ └── InputPeerChannelFromMessage
│ │ ├── msg_idint
│ │ └── user_idlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── channel_idlong
└── msg_idint

Example

await app.invoke(
    GetMessageReadParticipants(
        peer=await app.resolve_peer(chat_id),
        msg_id=0,
    )
)