Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Get all the app accessible to user

Hi All,

I am using QRS api to show user list of qlik sense.I am able to get the list of user properly but i have two issues.

1. I need all the app which is accessible to particular user.

2. I need the user list which are given login access(the user which is present in group)

what are the qrs api path to get above mention list.

1 Solution

Accepted Solutions
s29124141
Partner - Creator II
Partner - Creator II

Make sure you are doing HTTP GET, with required authentication and XSRF tokens in place. Below is the working snapshot from postman for your reference.

Userlist.png

View solution in original post

5 Replies
Not applicable
Author

Anyone please.

s29124141
Partner - Creator II
Partner - Creator II

1) Below endpoint gives the list of apps owned by particular user.

/qrs/app/full?filter={filter}&orderby={orderby}&privileges={appendprivileges}

Eg :- http://{{HostName}}/qrs/app/full?filter=owner.id eq 1ae179d5-483c-4103-885b-fba77587c962

2) Below endpoint gives the list of users (user access/login access)

/qrs/license/useraccesstype/full?filter={filter}&orderby={orderby}&privileges={appendprivileges}

Not applicable
Author

Hi Praveena thank you for your reply.

I am getting 400 bad request error by using

https://server:4242/qrs/app/full?filter=owner.id eq userI

s29124141
Partner - Creator II
Partner - Creator II

Make sure you are doing HTTP GET, with required authentication and XSRF tokens in place. Below is the working snapshot from postman for your reference.

Userlist.png

Not applicable
Author

I was passing wrong user id. Now its working fine.

Thanks.