ContributionsMost RecentMost LikesSolutionsRe: fetch users after a certain date The following API call should help you in get the registered users during a date range (date_start, date_end). http://community.lithium.com/community-name/restapi/vc/users/registered https://lithosphere.lithium.com/t5/rest-api/bd-p/developers-rest-api?leaf-id=Community.users#Communi... Thanks, Premkumar Re: i want to fetch all users using rest api The following API call should help you in get the registered users during a date range (date_start, date_end). http://community.lithium.com/community-name/restapi/vc/users/registered https://lithosphere.lithium.com/t5/rest-api/bd-p/developers-rest-api?leaf-id=Community.users#Community.users.registered Thanks, Premkumar Re: i want to fetch all users using rest api Hi Mayank, Yes by default Lithium returns only 25 users. You can use the page_size argument ( e.g: page_size=500) to specify the count. You can get the number of user by the call: /restapi/vc/users/count Also you can use the "page" argument to get the different results. e.g: http://community.abc.com/restapi/vc/users?page_size=500&page=1 http://community.abc.com/restapi/vc/users?page_size=500&page=2 http://community.abc.com/restapi/vc/users?page_size=500&page=3 Thanks, Premkumar Re: Messages changed callHi Brad, Can you share the complete URL link for this call? Is it part of the REST API or something available for internal use only. This can be a useful call in the future projects for me. Thanks in advance. Regards, PremkumarRe: Exception on the threads reply page - 'This widget could not be displayed' Hi, I saw your code and noticed that you have used the rest call in many places. Some of the calls to specific URL might require Admin access so in those cases you can use restadmin instead of rest call. e.g restadmin("/users/id/${author.id}/ranking/display/right_image") Thanks, Premkumar Re: Adding a class to the <body> tagHi, As far as I know you can not add the custom Body tag. From your sample code I can understand that you are trying to differentiate the Client whether Desktop or Mobile. If this is the case you can use different CSS file configuration in Studio for different Devices, Lithium will identify the client and serve the right CSS styling. Please refer the below link for different Skin configuration http://lithosphere.lithium.com/t5/skin-and-assets/About-skins/ta-p/109067 Thanks, PremkumarRe: create new criteria for ranking Can you make sure the Formula checkbox is enabled. Re: How to find out the page name for conditional statements? Hi, This is interesting problem and could be a common one for many people. Here is solution which I am thinking of. We can use the funtionlaity of Passing the Parameter to the custom component, which means you pass a paramater to your custom component which specifies the unique name of your page as you wish then get that in the custom component for the comparison. Please refer the below article on how to pass the parameter to the custom component and retreive it. http://lithosphere.lithium.com/t5/developers-knowledge-base/Passing-Parameters-to-a-Custom-Component/ta-p/88704 Thanks, Premkumar Re: create new criteria for ranking Also refer the link below http://lithosphere.lithium.com/t5/rankings/Create-a-ranking-formula/ta-p/108837 Re: create new criteria for ranking Hi, You can use the formula field in the Rank configuration Admin setting. Make sure you turn on the "Turn on the ranking formula" checkbox. Try the formula below (net_kudos_events_received>= 100) && (net_accepted_solutions >=35) Refer the below article for other metrics details https://lithosphere.lithium.com/t5/admin-and-cic-analytics/Using-Admin-metrics/ta-p/5923 Thanks, Premkumar