Read receipt list

Hi All,

Is there any endpoint available to get read receipt list by Messge id in Platform api. How we can get read recipients for particular message.

Hi @Deepa_Test,

There is no way to do that by message id directly, to get read receipt information you need to use the group channel endpoint with show_read_receipt=true. View a group channel | Chat Platform API | Sendbird Docs

This gives you back a timestamp of when each user last read messages in the channel.

"read_receipt": {
    "User1": 1652974768078,
    "User2": 1651084855407,
    "User3": 1652894251669
}

This can be compared with the message’s created timestamp to determine if the user read the message.