GET api/v1.0/Authentication/GetTenantDetail?communityUrl={communityUrl}

Returns information about a Tenant for a given Connected Community Site Url.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
TenantKey

globally unique identifier

None.

FullName

string

None.

ShortName

string

None.

HomePage

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TenantKey": "e1a5622a-3375-4c2c-97d0-819719e8a0f7",
    "FullName": "sample string 2",
    "ShortName": "sample string 3",
    "HomePage": "sample string 4"
  },
  {
    "TenantKey": "e1a5622a-3375-4c2c-97d0-819719e8a0f7",
    "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>e1a5622a-3375-4c2c-97d0-819719e8a0f7</TenantKey>
  </TenantDetail>
  <TenantDetail>
    <FullName>sample string 2</FullName>
    <HomePage>sample string 4</HomePage>
    <ShortName>sample string 3</ShortName>
    <TenantKey>e1a5622a-3375-4c2c-97d0-819719e8a0f7</TenantKey>
  </TenantDetail>
</ArrayOfTenantDetail>