<?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>article Qlik Sense QRS API using Xrfkey header in PowerShell in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/ta-p/1716660</link>
    <description>&lt;P&gt;&lt;BR /&gt;&lt;IFRAME src="https://www.youtube.com/embed/VKkuH8YRSI8?wmode=opaque" width="560" height="315" frameborder="0" scrolling="auto" allowfullscreen="allowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The &lt;STRONG&gt;Qlik Sense Repository Service API (QRS API) &lt;/STRONG&gt;contains all data and configuration information for a Qlik Sense site. The data is normally added and updated using the Qlik Management Console (QMC) or a Qlik Sense client, but it is also possible to communicate directly with the QRS using its API. This enables the automation of a range of tasks, for example:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Start tasks from an external scheduling tool&lt;/LI&gt;
&lt;LI&gt;Change license configurations&lt;/LI&gt;
&lt;LI&gt;Extract data about the system&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Using Xrfkey header&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;A common vulnerability in web clients is cross-site request forgery, which allows an attacker impersonate a user when accessing a system. Thus, we use the Xrfkey to prevent that; without Xrfkey being set in the URL, the server will send back a message saying: XSRF prevention check failed. Possible XSRF discovered.&lt;/P&gt;
&lt;P&gt;Please note that this example is related to token-based licenses, and in case this needs to be configured with Professional Analyser type of licenses, you might need to use the following API calls:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;/qrs/license/professionalaccesstype/full&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;/qrs/license/analyzeraccesstype/full&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Furthermore, combining this with QlikCli and in case you need to monitor and more specifically remove users, the following link from the community might be useful:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Deployment-Management/Deallocation-of-Qlik-Sense-License/m-p/1620314#M14567" target="_self"&gt;Deallocation of Qlik Sense License&lt;/A&gt;&amp;nbsp;&lt;SPAN class="feeditemtext cxfeeditemtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;This procedure has been tested in a range of Qlik Sense Enterprise on Windows versions.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;PowerShell 3.0 or higher (Installed by default in Windows 8 / Windows Server 2012 and later)&lt;/LI&gt;
&lt;LI&gt;Make sure the Qlik Repository service is up and running and port 4242 is open on the target server&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Method One: Authenticating through Qlik Proxy Service&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;OL&gt;
&lt;LI&gt;Go to PowerShell ISE and paste the following script&lt;/LI&gt;
&lt;LI&gt;In this example, we are sending a GET request with a header of Xrfkey=12345678qwertyui and we are addressing the end point of /about. For more details on all endpoints, please refer to&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/Subsystems/RepositoryServiceAPI/Content/Sense_RepositoryServiceAPI/RepositoryServiceAPI-Connect-API.htm" target="_self"&gt;Connecting to the QRS API&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE class="ckeditor_codeblock"&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;")
$url = "https://qlikserver1.domain.local/qrs/about?xrfkey=&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;"
Invoke-RestMethod -Uri $url -Method Get -Headers $hdrs -UseDefaultCredentials&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Method Two: &amp;nbsp;Use the certificate and send a direct request to the Repository API&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;OL&gt;
&lt;LI&gt;Open the Qlik Management Console and export the certificate. Please refer to&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/Export-client-certificate-and-root-certificate-to-make-API-calls/ta-p/1715515" target="_blank" rel="noopener"&gt;Export client certificate and root certificate to make API calls with Postman&lt;/A&gt;&amp;nbsp;for the procedure.&lt;/LI&gt;
&lt;LI&gt;Make sure that port 4242 is open between the machine making the API call and the Qlik Sense server.&lt;/LI&gt;
&lt;LI&gt;Import the certificate on the machine you will use to make API calls. This must be imported into the personal certificate store of your user in MMC. The following PowerShell script is fetching the Qlik Client certificate from the Certificate Personal store automatically for the current user. You may need to modify the script if you have QlikClient certificates imported from different Qlik Sense servers in the store.&lt;/LI&gt;
&lt;LI&gt;Paste the below script in PowerShell ISE:
&lt;PRE class="ckeditor_codeblock"&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;")
$hdrs.Add("X-Qlik-User","UserDirectory=DOMAIN;UserId=Administrator")
$cert = Get-ChildItem -Path "Cert:\CurrentUser\My" | Where {$_.Subject -like '*QlikClient*'}
$url = "https://qlikserver1.domain.local:4242/qrs/about?xrfkey=&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;"
Invoke-RestMethod -Uri $url -Method Get -Headers $hdrs -Certificate $cert&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Execute the command.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;BR /&gt;A possible response for the 2 above scripts may look like this (Note that the JSON string is automatically converted to a PSCustomObject by PowerShell) :&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;buildVersion &amp;nbsp; &amp;nbsp; &amp;nbsp;: 23.11.2.0
buildDate &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 9/20/2013 10:09:00 AM
databaseProvider &amp;nbsp;: Devart.Data.PostgreSql
nodeType &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 1
sharedPersistence : True
requiresBootstrap : False
singleNodeOnly &amp;nbsp; &amp;nbsp;: False
schemaPath &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: About&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related and advanced content&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;If there are several certificates from different Qlik Sense servers, these can not be fetched by subject, as there will be several certificates with the subject QlikClient, and that script will fail as it will return as array of certificates instead of a single certificate.&amp;nbsp;In that case, fetch the certificate by thumbprint. This required more Powershell knowledge, but an example can be found here:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Knowledge-Base/How-to-find-certificates-by-thumbprint-or-name-with-powershell/ta-p/1711332" target="_blank" rel="noopener"&gt;How to find certificates by thumbprint or name with powershell&lt;/A&gt;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Wed, 18 Feb 2026 09:03:03 GMT</pubDate>
    <dc:creator>Damien_V</dc:creator>
    <dc:date>2026-02-18T09:03:03Z</dc:date>
    <item>
      <title>Qlik Sense QRS API using Xrfkey header in PowerShell</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/ta-p/1716660</link>
      <description>&lt;P&gt;&lt;BR /&gt;&lt;IFRAME src="https://www.youtube.com/embed/VKkuH8YRSI8?wmode=opaque" width="560" height="315" frameborder="0" scrolling="auto" allowfullscreen="allowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The &lt;STRONG&gt;Qlik Sense Repository Service API (QRS API) &lt;/STRONG&gt;contains all data and configuration information for a Qlik Sense site. The data is normally added and updated using the Qlik Management Console (QMC) or a Qlik Sense client, but it is also possible to communicate directly with the QRS using its API. This enables the automation of a range of tasks, for example:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Start tasks from an external scheduling tool&lt;/LI&gt;
&lt;LI&gt;Change license configurations&lt;/LI&gt;
&lt;LI&gt;Extract data about the system&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Using Xrfkey header&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;A common vulnerability in web clients is cross-site request forgery, which allows an attacker impersonate a user when accessing a system. Thus, we use the Xrfkey to prevent that; without Xrfkey being set in the URL, the server will send back a message saying: XSRF prevention check failed. Possible XSRF discovered.&lt;/P&gt;
&lt;P&gt;Please note that this example is related to token-based licenses, and in case this needs to be configured with Professional Analyser type of licenses, you might need to use the following API calls:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;/qrs/license/professionalaccesstype/full&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;/qrs/license/analyzeraccesstype/full&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Furthermore, combining this with QlikCli and in case you need to monitor and more specifically remove users, the following link from the community might be useful:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Deployment-Management/Deallocation-of-Qlik-Sense-License/m-p/1620314#M14567" target="_self"&gt;Deallocation of Qlik Sense License&lt;/A&gt;&amp;nbsp;&lt;SPAN class="feeditemtext cxfeeditemtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;This procedure has been tested in a range of Qlik Sense Enterprise on Windows versions.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;PowerShell 3.0 or higher (Installed by default in Windows 8 / Windows Server 2012 and later)&lt;/LI&gt;
&lt;LI&gt;Make sure the Qlik Repository service is up and running and port 4242 is open on the target server&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Method One: Authenticating through Qlik Proxy Service&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;OL&gt;
&lt;LI&gt;Go to PowerShell ISE and paste the following script&lt;/LI&gt;
&lt;LI&gt;In this example, we are sending a GET request with a header of Xrfkey=12345678qwertyui and we are addressing the end point of /about. For more details on all endpoints, please refer to&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/Subsystems/RepositoryServiceAPI/Content/Sense_RepositoryServiceAPI/RepositoryServiceAPI-Connect-API.htm" target="_self"&gt;Connecting to the QRS API&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE class="ckeditor_codeblock"&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;")
$url = "https://qlikserver1.domain.local/qrs/about?xrfkey=&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;"
Invoke-RestMethod -Uri $url -Method Get -Headers $hdrs -UseDefaultCredentials&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Method Two: &amp;nbsp;Use the certificate and send a direct request to the Repository API&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;OL&gt;
&lt;LI&gt;Open the Qlik Management Console and export the certificate. Please refer to&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/Export-client-certificate-and-root-certificate-to-make-API-calls/ta-p/1715515" target="_blank" rel="noopener"&gt;Export client certificate and root certificate to make API calls with Postman&lt;/A&gt;&amp;nbsp;for the procedure.&lt;/LI&gt;
&lt;LI&gt;Make sure that port 4242 is open between the machine making the API call and the Qlik Sense server.&lt;/LI&gt;
&lt;LI&gt;Import the certificate on the machine you will use to make API calls. This must be imported into the personal certificate store of your user in MMC. The following PowerShell script is fetching the Qlik Client certificate from the Certificate Personal store automatically for the current user. You may need to modify the script if you have QlikClient certificates imported from different Qlik Sense servers in the store.&lt;/LI&gt;
&lt;LI&gt;Paste the below script in PowerShell ISE:
&lt;PRE class="ckeditor_codeblock"&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;")
$hdrs.Add("X-Qlik-User","UserDirectory=DOMAIN;UserId=Administrator")
$cert = Get-ChildItem -Path "Cert:\CurrentUser\My" | Where {$_.Subject -like '*QlikClient*'}
$url = "https://qlikserver1.domain.local:4242/qrs/about?xrfkey=&lt;SPAN&gt;12345678qwertyui&lt;/SPAN&gt;"
Invoke-RestMethod -Uri $url -Method Get -Headers $hdrs -Certificate $cert&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Execute the command.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;BR /&gt;A possible response for the 2 above scripts may look like this (Note that the JSON string is automatically converted to a PSCustomObject by PowerShell) :&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;buildVersion &amp;nbsp; &amp;nbsp; &amp;nbsp;: 23.11.2.0
buildDate &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 9/20/2013 10:09:00 AM
databaseProvider &amp;nbsp;: Devart.Data.PostgreSql
nodeType &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 1
sharedPersistence : True
requiresBootstrap : False
singleNodeOnly &amp;nbsp; &amp;nbsp;: False
schemaPath &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: About&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related and advanced content&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;If there are several certificates from different Qlik Sense servers, these can not be fetched by subject, as there will be several certificates with the subject QlikClient, and that script will fail as it will return as array of certificates instead of a single certificate.&amp;nbsp;In that case, fetch the certificate by thumbprint. This required more Powershell knowledge, but an example can be found here:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Knowledge-Base/How-to-find-certificates-by-thumbprint-or-name-with-powershell/ta-p/1711332" target="_blank" rel="noopener"&gt;How to find certificates by thumbprint or name with powershell&lt;/A&gt;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 18 Feb 2026 09:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/ta-p/1716660</guid>
      <dc:creator>Damien_V</dc:creator>
      <dc:date>2026-02-18T09:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense QRS API using Xrfkey header in PowerShell</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2129629#M10482</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how to know the&amp;nbsp;&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;xrfkey&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 15:28:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2129629#M10482</guid>
      <dc:creator>mouha</dc:creator>
      <dc:date>2023-10-18T15:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense QRS API using Xrfkey header in PowerShell</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2130100#M10487</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/222227"&gt;@mouha&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The xrfkey can be any 16 character alphanumeric string as long as the same value is set in the URL and in the http header.&lt;/P&gt;
&lt;P&gt;Br&lt;/P&gt;
&lt;P&gt;Björn&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2023 18:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2130100#M10487</guid>
      <dc:creator>Bjorn_Wedbratt</dc:creator>
      <dc:date>2023-10-19T18:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense QRS API using Xrfkey header in PowerShell</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2452648#M13933</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6112"&gt;@Bjorn_Wedbratt&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;Where do I find&amp;nbsp;&lt;SPAN&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;xrfkey&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 10:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2452648#M13933</guid>
      <dc:creator>malyastya</dc:creator>
      <dc:date>2024-05-15T10:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense QRS API using Xrfkey header in PowerShell</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2453515#M13960</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/299123"&gt;@malyastya&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The xrfkey can be &lt;STRONG&gt;any 16 character alphanumeric string&lt;/STRONG&gt; as long as the same value is set in the URL and in the http header.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can create this key in any way you wish.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2024 07:52:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Sense-QRS-API-using-Xrfkey-header-in-PowerShell/tac-p/2453515#M13960</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2024-05-17T07:52:35Z</dc:date>
    </item>
  </channel>
</rss>

