This API is used to obtain the details of a specified agency.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
agency_id |
Yes |
String |
ID of an agency. |
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. |
curl -i -k -H "X-Auth-Token:$token" -H 'Content-Type:application/json;charset=utf8' -X GET https://sample.domain.com/v3.0/OS-AGENCY/agencies/2809756f748a46e2b92d58d309f67291
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
agency |
Yes |
JSON object |
Delegated object. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
id |
Yes |
String |
ID of an agency. |
name |
Yes |
String |
Name of an agency. |
domain_id |
Yes |
String |
ID of the current domain. |
trust_domain_id |
Yes |
String |
ID of the delegated domain. |
trust_domain_name |
Yes |
String |
Name of the delegated domain. |
description |
Yes |
String |
Description of an agency. |
duration |
Yes |
String |
Validity period of an agency. The default value is null, indicating that the agency is permanently valid. |
expire_time |
Yes |
String |
Expiration time of an agency. |
create_time |
Yes |
String |
Time when an agency is created. |
{ "agency" : { "description" : " testsfdas ", "trust_domain_id" : "3ebe1024db46485cb02ef08d3c348477", "trust_domain_name" : "exampledomain", "id" : "c1a06ec7387f430c8122d6f336c66dcf", "duration": "FOREVER", "create_time" : "2017-01-06T05:56:09.738212", "expire_time" : null, "domain_id" : "0ae9c6993a2e47bb8c4c7a9bb8278d61", "name" : "exampleagency" } }
{ "error": { "message": "Could not find agency: 2809756f748a46e2b92d58d309f67291", "code": 404, "title": "Not Found" } }
Status Code |
Description |
---|---|
200 |
The request is successful. |
401 |
Authentication failed. |
403 |
Access denied. |
404 |
The agency does not exist. |
500 |
Internal server error. |