<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>link</title><link>https://community.appian.com/discussions/f/new-to-appian/28370/link</link><description>i have to provide a link, once they click on that link the document has to be downloaded. for this i need to give 2 paramater 1. unituq id(we already have) 2. document id(we already have) 
 can anyone help me with this?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: link</title><link>https://community.appian.com/thread/111135?ContentTypeID=1</link><pubDate>Mon, 17 Apr 2023 08:18:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f8132dd1-2cc1-4cf4-8f60-cd69381067ce</guid><dc:creator>Mallepu Prashanth </dc:creator><description>&lt;p&gt;Yes, as Eren suggested you can use the documentDownloadLink() in any linkfield or richTextDisplayField. You need to pass the doc id dynamically with id so when user clicks on it, then the doc will be downloaded to the system.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: link</title><link>https://community.appian.com/thread/111011?ContentTypeID=1</link><pubDate>Thu, 13 Apr 2023 09:49:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a3cb2077-54b5-44c8-b4ad-6c68838fbd8e</guid><dc:creator>Amaan Shekh</dc:creator><description>&lt;p&gt;You can also provide that document download link based on docId only&amp;nbsp; &amp;nbsp;-&amp;gt;&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.1/Document_Link_Component.html"&gt;a!documentDownloadLink()&lt;/a&gt;&lt;br /&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/62/pastedimage1681379395736v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!richTextDisplayField(
    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
    value: {
      a!richTextItem(
        text: &amp;quot;download doc&amp;quot;,
        link: a!documentDownloadLink(document: 9116)
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>