<?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>topic Re: Get last login date for users with login access type in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2473900#M21025</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47469"&gt;@Levi_Turner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the response. There is a field called &lt;STRONG&gt;latestActivity&amp;nbsp;&lt;/STRONG&gt;in the response of&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;/qrs/license/loginaccessusage/full&lt;/STRONG&gt;. Can I consider &lt;STRONG&gt;max(latestActivity)&lt;/STRONG&gt; for a particular user as the last time the user used a token to login to Qliksense. And is there any endpoint to the get the audit security logs. Because I want automate the process and don't want to look into the log files manually everytime.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Sivanesan&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jul 2024 07:23:50 GMT</pubDate>
    <dc:creator>Sivanesan</dc:creator>
    <dc:date>2024-07-31T07:23:50Z</dc:date>
    <item>
      <title>Get last login date for users with login access type</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2472956#M21001</link>
      <description>&lt;P&gt;Hi Everyone&lt;/P&gt;
&lt;P&gt;We are exploring options to disable a user who hasn't logged into QMC or HUB for certain days through QRS APIs. We use token based license. I came across this&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Integration-Extension-APIs/Get-user-last-activity-timestamp-using-QRS-API/td-p/117021" target="_self"&gt;post&lt;/A&gt;&amp;nbsp;and came to know that &lt;SPAN&gt;for user access type,&amp;nbsp;&lt;/SPAN&gt;we can use&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;/qrs/license/useraccesstype&lt;/EM&gt; to get the last date when the token has been used by the user and also for login access type it was mentioned that &lt;EM&gt;/qrs/license/loginaccessusage/full&lt;/EM&gt; can be used but not sure which field to use. Appreciate your help on this matter.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sivanesan&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 12:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2472956#M21001</guid>
      <dc:creator>Sivanesan</dc:creator>
      <dc:date>2024-07-25T12:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get last login date for users with login access type</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2473301#M21012</link>
      <description>&lt;P&gt;You will need to solve the issue a slightly different way that you are assuming. User Access Passes are assigned to users. Login Access Passes are assigned to a pool which can be used by users if they match the criteria of a Login Access Pass rule. This means to tell whether someone hasn't used a Login Access Pass, you will need to figure out who&amp;nbsp;&lt;EM&gt;has&lt;/EM&gt; then infer those who have not.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Get all users (/qrs/user)&lt;/LI&gt;
&lt;LI&gt;Get all users who have User Access Passes (/qrs/license/useraccesstype/full join user.id to id from 1)&lt;/LI&gt;
&lt;LI&gt;Get all login access usages (&lt;SPAN&gt;/qrs/license/loginaccessusage/full join user.id to id from 1)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Since (3) is purged after 30 days, you may need to add in data on who has logged in from the Proxy &amp;gt; Audit &amp;gt; AuditSecurity logs, you are after descriptions matching&amp;nbsp;Command=Login;Result=0;ResultText=Success.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 18:31:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2473301#M21012</guid>
      <dc:creator>Levi_Turner</dc:creator>
      <dc:date>2024-07-26T18:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Get last login date for users with login access type</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2473900#M21025</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47469"&gt;@Levi_Turner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the response. There is a field called &lt;STRONG&gt;latestActivity&amp;nbsp;&lt;/STRONG&gt;in the response of&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;/qrs/license/loginaccessusage/full&lt;/STRONG&gt;. Can I consider &lt;STRONG&gt;max(latestActivity)&lt;/STRONG&gt; for a particular user as the last time the user used a token to login to Qliksense. And is there any endpoint to the get the audit security logs. Because I want automate the process and don't want to look into the log files manually everytime.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Sivanesan&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 07:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Get-last-login-date-for-users-with-login-access-type/m-p/2473900#M21025</guid>
      <dc:creator>Sivanesan</dc:creator>
      <dc:date>2024-07-31T07:23:50Z</dc:date>
    </item>
  </channel>
</rss>

