Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them here
cancel
Showing results for 
Search instead for 
Did you mean: 
sheehab_russel
Contributor II
Contributor II

Users Audit log

How can I retrieve user login history (User, Email, Login Date) for the last 90 days from Qlik Cloud using Qlik ID authentication?

Labels (3)
1 Solution

Accepted Solutions
Daniele_Purrone
Support
Support

Hi @sheehab_russel , under Administration --> Events, you can filter by Event Type "com.qlik.user-session.begin"


Daniele_Purrone_0-1785138028322.png


You can also query the Audits API end-point and filter by the same event, but be aware that the limit is 100 events (you will need to paginate).

For a higher limit, you can use the Qlik-cli with a command like

qlik audit ls --eventType com.qlik.user-session.begin --limit 10000 > accesses.json

Daniele - Principal Technical Support Engineer & SaaS Support Coordinator at Qlik
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
Daniele_Purrone
Support
Support

Hi @sheehab_russel , under Administration --> Events, you can filter by Event Type "com.qlik.user-session.begin"


Daniele_Purrone_0-1785138028322.png


You can also query the Audits API end-point and filter by the same event, but be aware that the limit is 100 events (you will need to paginate).

For a higher limit, you can use the Qlik-cli with a command like

qlik audit ls --eventType com.qlik.user-session.begin --limit 10000 > accesses.json

Daniele - Principal Technical Support Engineer & SaaS Support Coordinator at Qlik
If a post helps to resolve your issue, please accept it as a Solution.
sheehab_russel
Contributor II
Contributor II
Author

Solution was helpful and I manage to get the required information.

Thanks.