ContributionsMost RecentMost LikesSolutionsRe: Add Friend using Rest api ??? Hi everyone, Thanks for the information. However, how would you check if a user is already a friend or not? Henrik Re: REST - Kudos or ratings count for the current user in a specific board HiVishwajeet, Thanks for your answer. This API gives the memberswho gave kudos in the board. Do you mean I should make a loop on all givers and check if the current user is among them? I found another way to do it, meanwhile. We have a LOT of kudos per message, but few messages in our events' boards. So the idea is to make a loop on the messages and check if the user has already give a kudo with this API : /messages/id/[id]/kudos/for/users/self/count The same works for ratings. The loop breaks when a kudo has been found. Henrik REST - Kudos or ratings count for the current user in a specific board Hi, I'd like to have, for the current user, the count of kudos or ratings he gave in a board. It is possible to do it for topics, replies or messages. For instance : /users/id/[user_id]/topics/in/boards/id/[board_id]/count Can we do the same for kudos and ratings? Another possibility is to extract all kudos given by one user and to check for each of them if the message's board is correct. But this is really badin terms of performance. Any idea? Thanks! Henrik Re: How to get the users who gave ratings to a message Hi, I eventually found the API: /restapi/vc/messages/id/ [ID]/ratings/key/contest_ratings/ratings/all Cheers, Henrik How to get the users who gave ratings to a message Hi, I'd like to get all users who gave a rating in a board or for a message. I've been readingthe API documentation but I cannot find a REST query that gives this list. Is there any way to do it? Thanks! Henrik How to customize contest entries in the contest board page Hi, In studio, we can easily customize messages (idea messages, blog messages, etc.), forthe topic page as well as for the board page. I'd like to customize contest messages. I edited the "ContestMessage" page.Unfortunately, it only customize the topic page, and not the board page. Is it possible to add custom component for each message in the contest board page? Thanks! Henrik Re: Add kudos button Via REST Hi Gursimrat, The topic object is a custom object I have defined in my community. It is an example so you don't need this object to give a kudo. Please check my second sample of code. All you will need is the ID of the message you want to give a kudo. In your custom component, just add buttons that call "giveAKudo(message ID)". The "message ID" must be given by your custom component. Henrik Re: Custom component in the topic page of the Facebook App Hi DougS, Thank you for the reply. I've just posted the idea here. Cheers, Henrik Re: 14.2 Release Notes Hi, can't wait for the new caching features! :) Re: Parent post issue Hi Gursimrat, I have used "root" instead of "parent" in my case. Something like: <#assign reply_root = rest("/messages/id/${reply_id}/root").message /> <#if reply_root.id != reply_id> The message is a reply to the topic whose id is ${reply_root.id} </#if> Cheers, Henrik