This API is used to query the permissions of a user group under a domain. A role is a set of permissions and represents a group of actions.
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
X-Auth-Token |
Yes |
String |
Authenticated token with the Security Administrator permission. |
curl -i -k -H "X-Auth-Token:$token" -H 'Content-Type:application/json;charset=utf8' -X GET https://sample.domain.com/v3/domains/d54061ebcb5145dd814f8eb3fe9b7ac0/groups/47d79cabc2cf4c35b13493d919a5bb3d/roles
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
links |
Yes |
Dict |
Role resource link of a specified user group under a domain. |
roles |
Yes |
Array |
Role of a specified user group under a domain. |
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
id |
Yes |
String |
ID of a role of a specified user group under a domain. |
links |
Yes |
Dict |
Role resource link. |
name |
Yes |
String |
Name of a role. |
domain_id |
Yes |
String |
ID of the domain to which a role belongs. |
type |
Yes |
String |
Display mode of a role.
|
display_name |
No |
String |
Displayed name of a role. |
catalog |
No |
String |
Directory where a role locates. |
policy |
No |
Dict |
Policy of a role. |
description |
No |
String |
Description of a role. |
{
"links": {
"self": "https://sample.domain.com/v3/domains/d54061ebcb5145dd814f8eb3fe9b7ac0/groups/47d79cabc2cf4c35b13493d919a5bb3d/roles",
"previous": null,
"next": null
},
"roles": [
{
"display_name": "Security Administrator",
"description": "Security Administrator",
"links": {
"self": "https://sample.domain.com/v3/roles/005cf92cfd364105afaa5df2eec25012"
},
"domain_id": null,
"name": "secu_admin",
"type": "AX",
"catalog": "BASE",
"policy": {
"Version": "1.0",
"Statement": [
{
"Action": [
"identity:*"
],
"Effect": "Allow"
}
]
},
"id": "005cf92cfd364105afaa5df2eec25012"
},
{
"display_name": "Agent Operator",
"description": "Agent Operator",
"links": {
"self": "https://sample.domain.com/v3/roles/d160d30477c642a486ad10e3b4d9820f"
},
"domain_id": null,
"name": "te_agency",
"type": "AX",
"catalog": "IAM",
"policy": {
"Version": "1.0",
"Statement": [
{
"Action": [
"identity:assume role"
],
"Effect": "Allow"
}
]
},
"id": "d160d30477c642a486ad10e3b4d9820f"
}
]
}
Status Code |
Description |
|---|---|
200 |
The request is successful. |
400 |
The server failed to process the request. |
401 |
Authentication failed. |
403 |
Access denied. |
404 |
The requested resource cannot be found. |