Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
random_user_3869
Partner - Creator III
Partner - Creator III

How can I Test a user access

Hello everyone,

 

I followed the following video

https://community.qlik.com/t5/Techspert-Events/Q-amp-A-with-Qlik-New-to-Qlik-Cloud-2024/td-p/2414058

At 

  • 42:46- How can I test a user’s access? there is a question that is very interesting

If we want to test user access in a space or in a tenant what option can we perform.

In the video one of the expert mention API and use the ID from a user in qmc.

Can someone enlight me and describe me the step to do it.

I think it could help lots of people as well.

Thank you for your help and the support

Labels (2)
1 Solution

Accepted Solutions
Daniele_Purrone
Support
Support

Hi @random_user_3869 

By quering https://TENANT.REGION.qlikcloud.com/api/v1/spaces/SPACEID/assignments

you will get the list of users that have access to the space, and their role.

For instance:

{
"data": [
{
"id": "userid1",
"type": "user",
"assigneeId": "...",
"roles": [
"codeveloper"
],

...

{
"id": "userid2",
"type": "user",
"assigneeId": "...",
"roles": [
"consumer"
],

 

 

There is no "testing", like emulating a user access.

If you want a simplified graphical interface, you can install the Access Evaluator monitoring app:
https://community.qlik.com/t5/Official-Support-Articles/The-Qlik-Sense-Monitoring-Applications-for-C...

Access Evaluator for Qlik Cloud

The Access Evaluator is a Qlik Sense application built for Qlik Cloud, which helps you to analyze user roles, access, and permissions across a tenant.

The app provides:

  • User and group access to spaces
  • User, group, and share access to apps
  • User roles and associated role permissions
  • Group assignments to roles

For more information and to download the app and usage instructions, see Qlik Cloud Access Evaluator.

 

 

 

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

1 Reply
Daniele_Purrone
Support
Support

Hi @random_user_3869 

By quering https://TENANT.REGION.qlikcloud.com/api/v1/spaces/SPACEID/assignments

you will get the list of users that have access to the space, and their role.

For instance:

{
"data": [
{
"id": "userid1",
"type": "user",
"assigneeId": "...",
"roles": [
"codeveloper"
],

...

{
"id": "userid2",
"type": "user",
"assigneeId": "...",
"roles": [
"consumer"
],

 

 

There is no "testing", like emulating a user access.

If you want a simplified graphical interface, you can install the Access Evaluator monitoring app:
https://community.qlik.com/t5/Official-Support-Articles/The-Qlik-Sense-Monitoring-Applications-for-C...

Access Evaluator for Qlik Cloud

The Access Evaluator is a Qlik Sense application built for Qlik Cloud, which helps you to analyze user roles, access, and permissions across a tenant.

The app provides:

  • User and group access to spaces
  • User, group, and share access to apps
  • User roles and associated role permissions
  • Group assignments to roles

For more information and to download the app and usage instructions, see Qlik Cloud Access Evaluator.

 

 

 

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