ContributionsMost RecentMost LikesSolutionsRe: Khoros Communities 21.10 Release Fellsteruk an e-mail regarding WAF dates was sent out by our support team a few weeks back, let me know if you didn't receive it for some reason. Regarding #2, we don't currently have plans to allow customization of this level in the WAF, but please reach out to support with your requests there and we can review them. Re: How many API Calls per function? Hey Matt, Lithium's "Billable API calls" refer to any API calls made from an external party to a Lithium community. 1) Since Coveo is an external party, you would have to check with them about how many API calls they make to Lithium and when. If I recall correctly, I believe they used to use a crawler behind the scenes and then store the results which would not result in API calls getting incremented, but it's best to check with them. Unfortunately, I'm not too familiar with our SFDC connector functionality, so I would have to defer to VimalGa for the other 2 questions. Hope this helps, Yuri Re: APIv2 Query for User's Topics Participated In? Hey Dave, Sorry, I misread your question when I went through it the first time. I thought it may be sufficient for you to get the posts ordered by when the user in question last contributed to the thread. Unfortunately, it looks like this may be a gap in our API and we would need to have one of our dev teams take a look. Can you please file a support ticket for tracking? Thank you, Yuri Re: APIv2 Query for User's Topics Participated In? Hey Dave, It looks like the issue you ran into stems from not being able to sort on "conversation.last_post_time" without "depth = 0". Would sorting by "post_time" instead be sufficient for your use case? This would get you the messages sorted by the time they were posted. The following works for me: SELECT topic.id FROM messages WHERE author.id = "101" ORDER BY post_time DESC You would then just have to page through and get enough messages to get 10 topics to display. I'll double check with the team to see if they have any other suggestions. Hope this helps, Yuri Re: Toolbelt Deprecation - Replacement?Hey Warren, I'm not familiar with unnamed text strings, can you tell me what you mean by that? If you want to find out what text key is backing a specific string, you can use the method described in https://community.lithium.com/t5/FAQs-email-templates-and-text/Find-text-keys/ta-p/109027. Hope this helps, Yuri Re: In board merge API Is there any query parameter which can prevent/stop the email notifications? Hey Abhijeet, Turning notifications off for moves via the API is not supported at this time. You would have to do the move through the UI to be able to avoid notifications. Here are some details about how to use the UI options https://community.lithium.com/t5/Release-Notes/16-3-Release-Notes/ba-p/219282#subscriptions Yuri Re: Local environment - gulp, sass, InteliJ Hey d4ng, Have you looked at our SDK Documentation? I believe this will give you what you need. Thank you, Yuri Re: How to change pagination to infinite scroll for posts Hey Realtordotcom, Take a look at the masonry view component as it supports infinite scroll and see if it meets your needs. I think it's pretty tough to roll your own infinite scroll. Hope this helps, Yuri Re: Print Knowledge BaseHey Abhishek, You will have to file a support ticket to disable that option. Hope this helps, YuriRe: Un/read status for boards Hey PerBonomi, Un/read status is currently only available on the message resource under user_context.read. What information are you looking to get at the board level? Thank you, Yuri