You are viewing our older product's guide. Click here for the documentation of GoodData Cloud, our latest and most advanced product.
Getting a List of Data Warehouse Users
To retrieve the list of users in your Data Warehouse instance, access the following URL:
https://secure.gooddata.com/gdc/datawarehouse/instances/{instance_id}/users
Admin users can see all users in the Data Warehouse instance. More restricted users can retrieve only information on their own accounts.
{
"users": {
"items": [ {
"user": {
"role": "dataAdmin",
"profile": "/gdc/account/profile/jqvsm7w0zbet6zxt1cuuqmorrcac79v2",
"login": "jane@company.com",
"links": {
"parent": "/gdc/datawarehouse/instances/wfc047e12030c3fe48d983d2081a9200/users",
"self": "/gdc/datawarehouse/instances/wfc047e12030c3fe48d983d2081a9200/users/jqvsm7w0zbet6zxt1cuuqmorrcac79v2"
}
}
}, {
"user": {
"role": "admin",
"profile": "/gdc/account/profile/sn4vsy4xe437j4bfimj19m3yb0e1tjmn",
"login": "john@company.com",
"links": {
"parent": "/gdc/datawarehouse/instances/wfc047e12030c3fe48d983d2081a9200/users",
"self": "/gdc/datawarehouse/instances/wfc047e12030c3fe48d983d2081a9200/users/sn4vsy4xe437j4bfimj19m3yb0e1tjmn"
}
}
} ],
"paging": { },
"links": {
"self": "/gdc/datawarehouse/instances/wfc047e12030c3fe48d983d2081a9200/users",
"parent": "/gdc/datawarehouse/instances/wfc047e12030c3fe48d983d2081a9200"
}
}
}
The profile URI provides access to the profile of an user:
/gdc/account/profile/{profile_id}
/gdc/account/profile/sn4vsy4xe437j4bfimj19m3yb0e1tjm
The profile ID is the string at the end of the profile URI. In the previous URL, the profile ID is sn4vsy4xe437j4bfimj19m3yb0e1tjm
.
To review details of the user or to make changes to the user account, click the self link. See Reviewing Data Warehouse User Details.
You can use the form at the bottom of the screen to add users to the Data Warehouse instance. See Adding a User in Data Warehouse.