Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I can set up a REST connector in Qlik cloud to load users from https://your-tenant.us.qlikcloud.com/api/v1/users.
However the default the lines is only 20. So I can only load 20 users.
Could anyone let me know how to set up the pagination or modify limit so that I can load full user list?
Thank you very much!
Fei
Hi @NZFei ,
you can add
?limit=100
to the URL (e.g. https://your-tenant.us.qlikcloud.com/api/v1/users?limit=100 )
100 is the maximum number. If you have more users, you will need to build some logic in the script.
For instance, you can check the userId of the latest user that was loaded, and then add
limit=100&startingAfter=userId
Hi @NZFei ,
you can add
?limit=100
to the URL (e.g. https://your-tenant.us.qlikcloud.com/api/v1/users?limit=100 )
100 is the maximum number. If you have more users, you will need to build some logic in the script.
For instance, you can check the userId of the latest user that was loaded, and then add
limit=100&startingAfter=userId
Excellent, thank you so much!