ContributionsMost RecentMost LikesSolutionsREST API calls for 3rd party application We currently work with a 3rd party who takes care of our moderation. They have an account that is setup with REST API read/write access. This account is used alongside their platform to make REST API calls - they pick up on all of our posts, including those that have been put through the Lithium Spam Quarantine. These means that moderation is being duplicated, the Lithium Spam Quarantine is proficient and picking up on the main Community posts that need to be moderated, meaning that the 3rd party do not need to have a view of this content. What we would like to happen is that the Spam Quarantine is the first layer of moderation and the 3rd party pick up on everything else that that hasn't been hidden by the Spam Quarantine. We would like our 3rd party moderators to carry out a REST API call that pulls back everything within our Community except from content that has already been picked up by the Spam Quarantine. Is there a REST API call that exists to differentiate the difference in posts that have been hidden and those that have not? Not sure if this is possible or if anyone is able to provide any further advice in relation to other potential solutions. SolvedREST API for Message Content of a Featured Thread Hi there, I'm just getting my head around REST API & freemarker, so bear with me! :-) I'm looking to call the message content of a thread within a specific board. Specifically, this is for a custom component that is currently looking at the featured topic within a specific board. So I've copied a custom component that a colleague has created, it currently pulls in the the title of the featured topic and the author. Below this, I want a preview of the message content to appear. We are also looking to apply a condition to this so that it only shows 240 characters, as we want to limit the message preview shown within the custom component. Hope someone can help. SolvedPulling Board Labels Into a Custom Component Hi all, I'm looking to create a custom component that contains labels. So the scenario is that I have a board that uses a set of pre-defined labels and I'm looking to create a custom component which displays these labels - I am looking to display this within the ForumPage. I want the custom component to display these labels. I'm just not sure how I can pass calls for these labels into a custom component and if I can do this using the Community API? Thanks, Using Labels Across Several Applications to be Displayed on One Page I'm looking to create a custom page that displays the latest discussions, solutions and knowledge base articles in three coloumns. I would like the information to be displayed based on a set of pre-defined labels. I want the labels to filter the results of discussions, solutions and articles based on the label selected. I'm just looking to try this out to see if it is possible. Not sure where to start :-( Re: Using the user_note Email Context ObjectAh, makes sense now. Thanks for this NoamanA.Re: Using the user_note Email Context Object Hi NoamanA, Thank you for your response. I'm still confused as to where the user not is createda and stored by the sender? Using the user_note Email Context Object Hi there, Has anyone used the user_note within their email templates? I've come across this context object for Email templates and I see that it will show 'a note to the recipient in the email' but I'm trying to understand how this works. Such as: Where is the 'user_note' pulled from/where is this stored? How is this updated? Is this something the admin/developer would do or is it the user's own note? If anyone has any examples of this context object being used it would be useful to see this in action. Thanks, SolvedRe: Popular Community Topics into Email TemplatesThanks Paolo.Re: Popular Community Topics into Email TemplatesThanks for the reply HaidongG. I've had a look at the velocity objects and not sure how this can be used to pull in the most active Community topics, presumably this isn't possible?Popular Community Topics into Email Templates Hi everyone, We are looking to pull in the most popular topics from our community and have these displayed within the daily digest email that we send out. We have attempted to do this by putting the following calls into the email template: <#assign messages=rest("/topics/style/blog/recent?page_size=3").messages /> <#list messages.message as message> <#assign msg=rest("/messages/id/${message.id}").message > <#assign articlesubject = rest("/messages/id/${message.id}/subject").value> <#assign body = msg.teaser?replace("<(.|\n)*?>", "", "r")> <a href="${message.@view_href}">${message.subject}</a></p> <div class="left-column-content" align="left"> <#if body?string?length gt 250> ${body?substring(0, 247)}... <#else>${body}</#if> <a href="${message.@view_href}"><b>read more</b></a> </div> </#list> When I try to save this within studio, I get an error. Is there an alternative method we can use to pull in the most popular Community topics into this email template? Thanks,