-
Notifications
You must be signed in to change notification settings - Fork 27
Realms (Provider)
danmacpherson edited this page Feb 7, 2013
·
1 revision
Request
curl -X GET--user admin:password--header “Accept: application/xml” -k https://localhost/conductor/api/provider_realms
Response
<provider_realms>
<provider_realm href='http://localhost:3000/api/provider_realms/1' id='1'></provider_realm>
<provider_realm href='http://localhost:3000/api/provider_realms/3' id='3'></provider_realm>
<provider_realm href='http://localhost:3000/api/provider_realms/2' id='2'></provider_realm>
</provider_realms>
Request
curl -X GET --user admin:password --header "Accept: application/xml" -k https://localhost/conductor/api/provider_realms/1
Response
Shows provider accounts where this provider realm is available.
Shows frontend realms using this provider realm.
<provider_realm id='1' href='https://localhost/conductor/api/provider_realms/1'>
<name>ec2-us-west-1b</name>
<external_key>identifier</external_key>
<provider id='1' href='https://localhost/conductor/api/provider/1'></provider>
<provider_accounts>
<provider_account id='1' href='https://localhost/conductor/api/provider_accounts/1'></provider_account>
</provider_accounts>
<frontend_realms>
<frontend_realm id='1' href='https://localhost/conductor/api/frontend_realms/1'></frontend_realm>
</frontend_realms>
</provider_realm>
Provider realms are read-only.