Hi tmarshall,
Here is the code which gives number of details of recent soultion. Suppress those details which you don't want.
<#assign solution_recent =rest("boards/id/<Board_ID>/solutions/recent?restapi.response_style=view").threads/>
<#assign solution_details =[] />
<#list solution_recent.thread as each_topic>
<#assign Thread_title = each_topic.messages.topic.subject />
<#assign Thread_author = each_topic.messages.topic.author.login />
<#assign Thread_creation_date = each_topic.messages.topic.post_time.@view_date />
<#assign Thread_views = each_topic.messages.topic.views.count?number />
<#assign Thread_URL = each_topic.@view_href />
<#assign Solution_author = each_topic.solutions.solution[0].author.login />
<#assign author_rank =rest("users/login/${each_topic.solutions.solution[0].author.login}/ranking").ranking.name/>
<#assign Solution_author_rank = author_rank />
<#assign Solution_URL = each_topic.solutions.solution[0].@view_href />
<#assign solution_details = solution_details + [{"Hash_Thread_title":Thread_title,"Hash_Thread_author":Thread_author,"Hash_Thread_creation_date":Thread_creation_date,"Hash_Thread_views":Thread_views,"Hash_Thread_URL":Thread_URL,"Hash_Solution_author":Solution_author,"Hash_Solution_author_rank":Solution_author_rank,"Hash_Solution_URL":Solution_URL}] />
</#list>
<#assign solution_details= solution_details?sort_by("Hash_Thread_views")?reverse>
<#list solution_details as solutions_details_loop>
<table>
<tr><td>Thread_title</td><td>${solutions_details_loop.Hash_Thread_title}</td>
<tr><td>Thread_author</td><td>${solutions_details_loop.Hash_Thread_author}</td>
<tr><td>Thread_creation_date</td><td>${solutions_details_loop.Hash_Thread_creation_date}</td>
<tr><td>Thread_views</td><td>${solutions_details_loop.Hash_Thread_views}</td>
<tr><td>Thread_URL</td><td>${solutions_details_loop.Hash_Thread_URL}</td>
<tr><td>Solution_author</td><td>${solutions_details_loop.Hash_Solution_author}</td>
<tr><td>Solution_author_rank</td><td>${solutions_details_loop.Hash_Solution_author_rank}</td>
<tr><td>Solution_URL</td><td>${solutions_details_loop.Hash_Solution_URL}</td>
<tr>---------------------------------------------------------------------------------</tr>
</table>
</#list>
Please let me know if you face any problem.
Thanks,
Vishwajeet
Give a Kudo and Accept as solution, if my post helps you.:smileyhappy: