Forum Discussion

Lindsey's avatar
Lindsey
Leader
5 years ago

How to check 'read' status of forum topic

Is there a REST call to retrieve whether a specific message has been read by a specific user?

We are attempting to replicate the list of forum topics ourselves, and want to recreate the red line that shows whether a message has been read or not. How can we replicate this 'unread' status when displaying a message?

  • Lindsey, You can use below V1 API to check whether user read the current message or not.

    http://community.lithium.com/community-name/restapi/vc/messages/id/1271/read

     

    where 1271 is the message id by which you can check if its read by user.

    <response status="success">
      <value type="boolean">false</value>
    </response>