Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there currently a way to plan report tasks based on active directory groups? Or do you plan implementing an integrated way to use the IdP Connection for that? Would be much easier than maintaining an excel file.
Good news @Linda95 you can source your distribution list form other connected sources(avoiding the excel file) - see https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Reporting/cloud-in-app-r... and the section Defining the distribution list manually in the load script. You will have to replicate the DL schema of the excel file in your source e.g. add the filter names you need and the group names you want to use in the reporting tasks. We do anticipate this will be a preferred strategy over time.
@Linda95 certain IdP groups are available using the load script to load users (and optionally groups).
The trick is to use the 'users' endpoint with the Qlik REST Connector to pull the list of IdP groups from your tenant. Create a new REST connection as below pointing to the URL of your tenant's users endpoint:
https://<tenant>.<region>.qlikcloud.com/api/v1/users
You will also need an 'API key' (which must be pre-generated) and then pasted into the Query headers section of the REST Connection.
The query header name is 'Authorization' (you must type this out manually).
The value is set to 'Bearer <APIKEY>'
The groups are available under 'assignedGroups' (see below)
Keep in mind you will only see the groups for the members have already logged into Qlik Cloud. The tenant is only becomes aware of IdP groups when it gets the group memberships from the IdP at the time of login.
I've adjusted the load script to join the groups and users together, and rename and hide the recipient fields
After rerunning the load script, you will see the Idp groups under 'groups' with the correct memberships.
In case you want to copy my script for editting, here it is pasted out: