GET api/v2.0/Authentication/GetTenantDetail?communityUrl={communityUrl}
Returns information about a Tenant for a given Connected Community Site Url.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| communityUrl |
The Url for a Connected Community Site. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Summary Information about a Community Site.
Collection of TenantDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| TenantKey | globally unique identifier |
None. |
|
| FullName | string |
None. |
|
| ShortName | string |
None. |
|
| HomePage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TenantKey": "c2edb1d5-99cc-43ad-9bf0-85f3437c0828",
"FullName": "sample string 2",
"ShortName": "sample string 3",
"HomePage": "sample string 4"
},
{
"TenantKey": "c2edb1d5-99cc-43ad-9bf0-85f3437c0828",
"FullName": "sample string 2",
"ShortName": "sample string 3",
"HomePage": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfTenantDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise">
<TenantDetail>
<FullName>sample string 2</FullName>
<HomePage>sample string 4</HomePage>
<ShortName>sample string 3</ShortName>
<TenantKey>c2edb1d5-99cc-43ad-9bf0-85f3437c0828</TenantKey>
</TenantDetail>
<TenantDetail>
<FullName>sample string 2</FullName>
<HomePage>sample string 4</HomePage>
<ShortName>sample string 3</ShortName>
<TenantKey>c2edb1d5-99cc-43ad-9bf0-85f3437c0828</TenantKey>
</TenantDetail>
</ArrayOfTenantDetail>