ContributionsMost RecentMost LikesSolutionsRe: REST API to retrieve all the posts which are escalated I'm not aware of a way to do that directly with LiQL (API v2). Here are updated links for the docs referenced in my previous post: Community object - https://devdocportal.khoros.com/t5/Community-API-v1-Reference/bd-p/restv1docs?section=commv1&branch=Community escalations / count - https://devdocportal.khoros.com/t5/Community-API-v1-Reference/bd-p/restv1docs?section=commv1&leaf-id=Community.escalations.count#Community.escalations.count escalations / recent - https://devdocportal.khoros.com/t5/Community-API-v1-Reference/bd-p/restv1docs?section=commv1&leaf-id=Community.escalations.recent#Community.escalations.recent Re: Messages and Categories You can use category.id as part of the WHERE clause. For example, I was able to run this LiQL query in the API Browser (in Studio) and get the appropriate results: SELECT subject, view_href FROM messages WHERE category.id = 'leaf' You can also use an IN clause for more than one category SELECT subject, view_href FROM messages WHERE category.id IN ('leaf','preface') and add a depth comparison if you only want replies SELECT subject, view_href FROM messages WHERE category.id = 'leaf' AND depth > 0 or SELECT subject, view_href FROM messages WHERE category.id IN ('leaf','preface') AND depth > 0 Re: Khoros Communities 20.10 Release Notes Hi hayata You can learn more about using community event listeners here: https://developer.khoros.com/khoroscommunitydevdocs/docs/subscribe-to-community-events Re: REST API to retrieve all the posts which are escalated Hello, There are APIs which allow you to retrieve information about messages in the platform which have been escalated. These methods are available at the Community level and also different node levels in the Community. If you look at the documentation for the Community object (http://lithosphere.lithium.com/t5/rest-api/bd-p/developers-rest-api?branch=Community) you will find methods for counting escalations (escalations/count - http://lithosphere.lithium.com/t5/rest-api/bd-p/developers-rest-api?leaf-id=Community.escalations.count#Community.escalations.count) and looking up recent escalations (escalations/recent - http://lithosphere.lithium.com/t5/rest-api/bd-p/developers-rest-api?leaf-id=Community.escalations.recent#Community.escalations.recent). Similar methods are available on other nodes within the API. For example, you can find the same methods available on the Board object (http://lithosphere.lithium.com/t5/rest-api/bd-p/developers-rest-api?branch=Board). Re: Way to subscribe/syndicate content based on tags? I am not aware of an RSS feed or ActiveCast widget for Tags. There is REST API support for returning the Tag Cloud or for looking up and getting information about tags. You can use the REST API to pull the content you are looking to syndicate and display elsewhere. You can find more information in the REST API documentation around CommunityTaggingContext object. Re: Zero Messages in Thread when using pageNumber and pageSize :( Can you post an example of a board with more than 10 threads where this isn't working for you? The example you give is for a board that doesn't appear to exist. Here is a quick example I tried, but it worked correctly for me. http://hificommunity.lithium.com/restapi/vc/boards/id/Amplifiers/threads/recent?page_size=10&page=1 http://hificommunity.lithium.com/restapi/vc/boards/id/Amplifiers/threads/recent?page_size=10&page=2 http://hificommunity.lithium.com/restapi/vc/boards/id/Amplifiers/threads/recent?page_size=10&page=3 Re: How to reply to a message via REST API? On the Message object, there is a reply method (for example /restapi/vc/messages/id/245/reply ) that will allow you to post a reply to the given message. It works much the same way as posting a message to a board.