ContributionsMost RecentMost LikesSolutionsRe: Download attachment through API vmalla There is no direct way to download the attachments like upload API. But yes, you can get it done with download.js and ajax service. You need to use the below API to get the attachment URL and then need to pass the URL in ajax. SELECT * FROM attachments WHERE message.id = '1057' Include download.js and run the below script. Just need to pass the attachment URL dynamically. For reference: http://danml.com/download.html jQuery.ajax({ url: "https://lithiumstage.mycommunity.com/mycommunity/attachments/mycommunity/Resources/4/1/SSPL%20-%20EC%20Position%20Management%20-%20Process%20Diagrams.pdf ", success: download.bind(true, "text/pdf", "attchement.pdf") }); Re: Can I include external HTML files in my Community? jaread83 You can avoid the 'flash' of the HTML being loaded by using synchronous ajax request. I guess it will slightly increase the page load time. Or You can cache the HTML content at the community level and keep them updated as required. Please see the below doc for caching https://community.lithium.com/t5/Developer-Knowledge-Base/Cache-the-output-of-a-macro/ta-p/182354 Re: Can I include external HTML files in my Community? jaread83 Yes you can include external HTML file using Js Re: How to filter messages in search api reply by user Hi Shivshankar You can check this below API in V1, https://community.lithium.com/t5/Developer-Documentation/bd-p/dev-doc-portal?section=commv1&leaf-id=User.topics#User.topics.messages Re: How to filter messages in search api reply by user Shivshankar You can use V2 Api call, Select * from messages where user.id = '12' Re: How to subscribe a user to board as admin through API You can manage only your own subscription. There is no such API to manage other user's subscription. Re: How to subscribe a user to board as admin through API Also. it seems there is some issue with your API as well. 1. You just need to pass the subscription type only. 2. Need to use this API in the endpoint instead of component. Below doc will help you https://community.lithium.com/t5/Developer-Discussion/Board-subscription-option/m-p/409761#M13274 Re: How to subscribe a user to board as admin through API Are you getting any error? if yes please share the screenshot. Option to Subscribe Label -- Missing There was an option to subscribe label on the non-responsive community. See the screenshot: https://prnt.sc/iu7uh6 This option is missing from the new responsive community. See the screenshot: https://prnt.sc/iu7un0 Any help will be appreciated... SolvedRe: To get Apiv2 authorization code without login page Hi Nav I think you should use Session Key Authentication Please See the doc : https://community.lithium.com/t5/Developer-Documentation/bd-p/dev-doc-portal?section=sessionauth Using this you can authorise the user by making this below call. curl -XPOST 'https://yourcommunity.com/restapi/vc/authentication/sessions/login?user.login=<login>&user.password=<password>' If you follow OAuth 2.0 implementation, authorise will be done on Lithium End only. If the user successfully logged in then it will redirect to the mention redirection Url along with auth code.Which can be used for further Api Call.