ContributionsMost RecentMost LikesSolutionsAPI call to fetch recently visited boards by a specific user Hello All, Is there any API call to fetch recently visited boards by a specific user. Please let me know if any work around if API call is not available. Regards, Dhiraj Separate API call to get Kudos and Votes for particular user Hello All, We need an API call to fetch kudos count for particular user for each discussion style. E.g. User specific kudos count for forums, User specific votes count for ideas etc. Please let us know if anyone has implemented such use case. Regards, Dhiraj Re: Get all ideas in community posted in last 30 days irach15: To use above rest call you need to give timeframe in date format. If you need code to get date before "n" number of dates then I can provide it. Let me know. Re: Get all ideas in community posted in last 30 days Hello Everyone, Following REST call worked for me which I got from support team. SELECT * FROM messages WHERE conversation.style = 'idea' AND conversation.last_post_time > 2015-12-01T10:04:30-08:00 AND conversation.last_post_time < 2015-12-31T10:04:30-08:00 AND depth=0 ORDER BY conversation.last_post_time DESC Also followiong article is helful, http://community.lithium.com/t5/Community-API-v2/Message-resource/ta-p/113091 Regards, Dhiraj Re: Get all ideas in community posted in last 30 days Hi TariqHussain, I'm trying to get response in endpoint but it seems that the max_age parameter is not supported by mentioned call. I'm using followiung code but getting count of all ideas in community, instead of last one month. <#assign apiVersion = "2.0"/> <#assign ideaQuery = "select * from messages where conversation.style='idea' and depth=0 LIMIT 1000 OFFSET 0 "/> <#assign ideas = rest(apiVersion, "/search?q=" + ideaQuery?url+ "&max_age=one_month").data.items/> ${ideas?size} Please let me know your comments. Regards, Dhiraj Re: Get all ideas in community posted in last 30 days Hi TariqHussain, PaoloT, Thank you for the inputs. Could you please cofirm if we can do this call from external JAVA app. If yes, could you please let us know if there are any specific changes needed to the API call? Regards, Dhiraj Get all ideas in community posted in last 30 days Hi All, We need to fetch ideas for last 30 days from whole comminity using REST API call. Could you please let us know. Regards, Dhiraj SolvedRe: Get list of ideas filtered by multiple statusesHi Doug, Thank you for your inputs. I have raised an Idea to get this use case done. http://community.lithium.com/t5/Product-Ideas/Get-list-of-ideas-filtered-by-multiple-statuses/idi-p/204911 Please vote. regards, DhirajGet list of ideas filtered by multiple statuses Hello All, Is there a way to get list of ideas filtered by multiple statuses. Currently we do have a REST API call to get all the messages for a single status as follow:http://community.lithium.com/restapi/vc/boards/id/Lithium_Ideas/threads/for/message_statuses/id/2/recent Is there any API call which will return all the idea messages for those statuses. E.g. I need ideas who has status V1, V2 and V3. Can we get it in single call? Regards, Dhiraj Re: Rest API to get and set the status of IdeaHi Varun, I'm looking for a REST call to get status of a particular Idea message. The mentioned TKB gives information about idea statuses and corresponding messages. Regards, Dhiraj