<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question URL Navigations for knowledge in nowassist VA in Virtual Agent forum</title>
    <link>https://www.servicenow.com/community/virtual-agent-forum/url-navigations-for-knowledge-in-nowassist-va/m-p/3571277#M26550</link>
    <description>&lt;P&gt;&lt;SPAN&gt;We have created new now assistant VA &amp;amp; given knowledge base as information source. functionality wise it working fine&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;However, when we are getting result we can see&amp;nbsp; sources as article links. when we click on it redirect to article page in portal.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;by default, I can see the below in VA general settings.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vinay49_0-1783603720933.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/522841i9D70C8500E656210/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Vinay49_0-1783603720933.png" alt="Vinay49_0-1783603720933.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to update this as&amp;nbsp;&lt;BR /&gt;/{{portal}}?id=knowledge&amp;amp;i={{data.number}} but it is not working. (this is my custom portal article page link)&lt;BR /&gt;&lt;BR /&gt;from where we are passing the data.sys_id into this URL. So that w can pass number also from there(not sure).&lt;BR /&gt;&lt;BR /&gt;your help would be really appreciate.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jul 2026 13:33:16 GMT</pubDate>
    <dc:creator>Vinay49</dc:creator>
    <dc:date>2026-07-09T13:33:16Z</dc:date>
    <item>
      <title>URL Navigations for knowledge in nowassist VA</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/url-navigations-for-knowledge-in-nowassist-va/m-p/3571277#M26550</link>
      <description>&lt;P&gt;&lt;SPAN&gt;We have created new now assistant VA &amp;amp; given knowledge base as information source. functionality wise it working fine&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;However, when we are getting result we can see&amp;nbsp; sources as article links. when we click on it redirect to article page in portal.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;by default, I can see the below in VA general settings.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vinay49_0-1783603720933.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/522841i9D70C8500E656210/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Vinay49_0-1783603720933.png" alt="Vinay49_0-1783603720933.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to update this as&amp;nbsp;&lt;BR /&gt;/{{portal}}?id=knowledge&amp;amp;i={{data.number}} but it is not working. (this is my custom portal article page link)&lt;BR /&gt;&lt;BR /&gt;from where we are passing the data.sys_id into this URL. So that w can pass number also from there(not sure).&lt;BR /&gt;&lt;BR /&gt;your help would be really appreciate.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2026 13:33:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/url-navigations-for-knowledge-in-nowassist-va/m-p/3571277#M26550</guid>
      <dc:creator>Vinay49</dc:creator>
      <dc:date>2026-07-09T13:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: URL Navigations for knowledge in nowassist VA</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/url-navigations-for-knowledge-in-nowassist-va/m-p/3572174#M26585</link>
      <description>&lt;P&gt;Hi &lt;A href="https://www.servicenow.com/community/user/viewprofilepage/user-id/209076" target="_blank" rel="noopener"&gt;@Vinay49&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm assuming your screenshot is the stock URL Navigation record under Conversational Interfaces, Type &lt;STRONG&gt;Custom Mapping&lt;/STRONG&gt;, Table &lt;STRONG&gt;Knowledge&lt;/STRONG&gt;, and the Value field still reads its default, /{{portal}}?id=kb_article&amp;amp;sys_id={{data.sys_id}}. If that's the case, here's the constraint you're up against: for a knowledge result, that record only ever gets fed two tokens, portal and data.sys_id. There is no data.number in this context, so the moment you reference it in the Value field it resolves to nothing and the whole link breaks.&lt;/P&gt;&lt;P&gt;You can rename the query parameter to whatever your custom article page expects, i for instance, that part is just a label. What you can't change is the token itself, it has to stay {{data.sys_id}}: /{{portal}}?id=knowledge&amp;amp;i={{data.sys_id}}. If your page genuinely needs the KB number rather than the sys_id, the fix isn't in this record, it's a static template with no lookup capability. Easier to handle it on the receiving page: either resolve the article by sys_id directly (cleanest, always unique, always populated), or add a small script that takes the sys_id off the URL, queries kb_knowledge for the number, and redirects.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;BR /&gt;Vikram Karety&lt;BR /&gt;Octigo Solutions INC&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2026 13:08:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/url-navigations-for-knowledge-in-nowassist-va/m-p/3572174#M26585</guid>
      <dc:creator>Vikram Reddy</dc:creator>
      <dc:date>2026-07-11T13:08:46Z</dc:date>
    </item>
  </channel>
</rss>

