forked from docs/doc-exports
Reviewed-by: gtema <artem.goncharov@gmail.com> Co-authored-by: zhangyue <zhangyue164@huawei.com> Co-committed-by: zhangyue <zhangyue164@huawei.com>
13 KiB
13 KiB
Checking Whether an Agency Has the Specified Permissions on a Domain
Function
This API is used to check whether an agency has the specified permissions on a domain.
URI
- URI parameters
Parameter
Mandatory
Type
Description
domain_id
Yes
String
ID of the current domain.
agency_id
Yes
String
ID of an agency.
role_id
Yes
String
ID of a role.
Request Parameters
- Parameters in the request header
Parameter
Mandatory
Type
Description
Content-Type
Yes
String
Fill application/json;charset=utf8 in this field.
X-Auth-Token
Yes
String
Authenticated token with the Security Administrator permission.
- Example request
curl -i -k -H "X-Auth-Token:$token" -H 'Content-Type:application/json;charset=utf8' -X HEAD https://sample.domain.com/v3.0/OS-AGENCY/domains/b32d99a7778d4fd9aa5bc616c3dc4e5f/agencies/37f90258b820472bbc8a0f4f0bfd720d/roles/0f3a2d418ed747fa8be46e92757be9ff
Response Parameters
- Example response (request failed)
{ "error" : { "message" : "Could not find role: 0f3a2d418ed747fa8be46e92757be9ddff", "code" : 404, "title" : "Not Found" } }
Status Codes
Status Code |
Description |
---|---|
204 |
The request is successful. The agency has the specified permissions on the domain. |
401 |
Authentication failed. |
403 |
Access denied. |
404 |
The requested resource cannot be found. |
500 |
Internal server error. |
Parent topic: Agency Management