bhupen
11 years agoAdvisor
Is there a way to export more than 25 unique usernames in csv/txt
I want to export a list of unique usernames for any given thread identified.
Solution I had:
I have managed it using REST API with this call:
/restapi/vc/threads/id/23/participants/recent.
Concern:
This solutino is only giving me 25 user in output where as there are many users in the thread.
Can someone help me out for this please
Help will be appreciated.
Regards
- samudhraa Thank you very much. I resolved this using this:
<#assign x=10>
<#list 1..x as pageNum>
<#list restadmin("/threads/id/5719/participants/recent/?page=${pageNum}&page_size=1000").users.user as user>
<#if user.login??>
${user.login}
</#if>
</#list>
</#list>