Granting access to the default data quality projects (Watson Knowledge Catalog)

Service This feature is available only if the base version of the Watson Knowledge Catalog service is installed on the IBM Cloud Pak for Data platform.

The following default data quality projects are created during installation but are, by default, not visible to all users. As an administrator, you must explicitly grant access to these projects:

  • UGDefaultWorkspace
  • PIIWorkspace
  • DataLakeWorkspace
  • InDepthAnalysisWorkspace

You can grant access by changing the project settings in the UI or by running the following commands for each user who needs access to a selected default data quality project, replacing <userID> with the proper value. You must run these commands in the iis-services pod.

curl -k -u isadmin:$ISADMIN_PASSWORD -H 'Content-Type: application/json' -X POST -d '{"users":[{"id":"<userID>","role":"SorcererBusinessAnalyst,SorcererOperator"}]}' https://localhost:9446/ibm/iis/ia/api/configuration/project/UGDefaultWorkspace/addUser
curl -k -u isadmin:$ISADMIN_PASSWORD -H 'Content-Type: application/json' -X POST -d '{"users":[{"id":"<userID>","role":"SorcererBusinessAnalyst,SorcererOperator"}]}' https://localhost:9446/ibm/iis/ia/api/configuration/project/PIIWorkspace/addUser
curl -k -u isadmin:$ISADMIN_PASSWORD -H 'Content-Type: application/json' -X POST -d '{"users":[{"id":"<userID>","role":"SorcererBusinessAnalyst,SorcererOperator"}]}' https://localhost:9446/ibm/iis/ia/api/configuration/project/DataLakeWorkspace/addUser
curl -k -u isadmin:$ISADMIN_PASSWORD -H 'Content-Type: application/json' -X POST -d '{"users":[{"id":"<userID>","role":"SorcererBusinessAnalyst,SorcererOperator"}]}' https://localhost:9446/ibm/iis/ia/api/configuration/project/InDepthAnalysisWorkspace/addUser

Parent topic: Administering Watson Knowledge Catalog