Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I retrieve user login history (User, Email, Login Date) for the last 90 days from Qlik Cloud using Qlik ID authentication?
Hi @sheehab_russel , under Administration --> Events, you can filter by Event Type "com.qlik.user-session.begin"
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
Hi @sheehab_russel , under Administration --> Events, you can filter by Event Type "com.qlik.user-session.begin"
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
Solution was helpful and I manage to get the required information.
Thanks.