GET api/v1.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 TenantDetailName | 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": "8a60b533-77d3-4e9d-a8f1-5739f8bb918b", "FullName": "sample string 2", "ShortName": "sample string 3", "HomePage": "sample string 4" }, { "TenantKey": "8a60b533-77d3-4e9d-a8f1-5739f8bb918b", "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>8a60b533-77d3-4e9d-a8f1-5739f8bb918b</TenantKey> </TenantDetail> <TenantDetail> <FullName>sample string 2</FullName> <HomePage>sample string 4</HomePage> <ShortName>sample string 3</ShortName> <TenantKey>8a60b533-77d3-4e9d-a8f1-5739f8bb918b</TenantKey> </TenantDetail> </ArrayOfTenantDetail>