ContributionsMost RecentMost LikesSolutionsRe: Facing issues Downloading a file with third party API Thank you for the confirmationDougS.😊 Facing issues Downloading a file with third party API Hi All, I am trying to use a third part file download API in the endpoints. This third-party API is returning anapplication/octet-stream; charset=UTF-8, however when I print the response in the endpoint using ${http._client_request.content},, the stream characters break down. documentation: https://developer.khoros.com/khoroscommunitydevdocs/reference/httpclientrequest#httpclientrequestprotocol-host-url Is there a way I can control the ${http_client_request.content} characters not to break down in the output, as they start appearing as boxes rather than octet-stream characters orto directly share the object to the JS from here without using ${} if possible? Regards Tarun Kumar SolvedRe: Add additional data to message Hishayl, Adding custom tags or having custom fields, depends on the fields you are adding and their requirements, security, and privacy. If the requirements can be met with the custom tags you can achieve that, however, you need to make sure the custom tags are enabled for your community, else you will need to create a support ticket for that. Documentation: https://community.khoros.com/t5/Custom-tags/About-custom-tags/ta-p/35452 Regarding requirements for custom fields, you need to create a support ticket as per your requirements. Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: Add additional data to message Hishayl, I will suggest you here to create a support ticket, to create the required fields for the messages table which are as expected, they may require information eg. which fields, type of the fields, etc. These fields can be updated as custom fields for the messages table. Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: Determine message is a forum post, idea or a announcement Higangadhar, You can use the field conversation.style to get the required distinction. You can make a LIQL request as follows Select conversation.style from messages Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: User Details Hiv-vemami, You can simply use the users v2 API: SELECT * from users For more information please have a look at the following Documentation, https://developer.khoros.com/khoroscommunitydevdocs/docs/users Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: Custom Component - Latest post by Role Higatomonstruo, You can use the ${coreNode.id}in Freemarker to get category ID, in the custom components. Following Is the reference document to get Core Node references: https://developer.khoros.com/khoroscommunitydevdocs/reference/corenode-1 This will look something like following SELECT id, subject, view_href, post_time, kudos.sum(weight), author.login, author.id, board.title FROM messages WHERE category.id = '${coreNode.id}' AND conversation.style = 'forum' AND depth = 0 ORDER BY post_time DESC LIMIT 10 Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: http.client request error Hihayata, It seems a syntax error. for using http.client.request the "https" and "URL" are two different parameters. you may need to pass something like: <#assign http_client_request = http.client.request("http", "www.somewebservicedomain.com", "/some/web/service") /> Documentation for the same can be found over here: https://developer.khoros.com/khoroscommunitydevdocs/reference/httpclientrequest#httpclientrequesturl Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: How to subscribe to a label using a custom link, expecially in a Forum? HiInactive User, the API Would Goi in the URL for the Ajax call.You need to pass data as json to the ajax call. The success message would look something like: data: href: "/nodes/board:board-id" id: "board-id" type: "node" __proto__: Object href: "/users/id" id: "id" login: "login" type: "user" view_href: "*****" __proto__: Object href: "/labels/88" id: "88" type: "label" href: "/labels/88/subscriptions/2121" id: "2121" node: subscriber: target: Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar Re: APIv2 Subscriptions Troubleshooting Hiallensmith81, the API you are trying to use provides the results to the subscriptions of the user making the request unless there is a request containing the subscriber's ID explicitly. For Getting the subscribers to a particular board, you can try to use the V1 API to get the subscribes to a particular board: https://[COMMUNITY DOMAIN]/restapi/vc/boards/id/<board ID>/subscribers/email/board/count Documentation: https://developer.khoros.com/khoroscommunitydevdocs/docs/get-a-count-or-list-of-users-subscribed-to-a-board Please GiveKudosif you find this post useful and also mark this asAccepted Solutionif this is the required solution. Regards Tarun Kumar