POST api/v2.0/Authentication/Widget
Used to Authenticate to the Widgets Platform
Request Information
URI Parameters
None.
Body Parameters
An encrypted token, provided by the Connected Community CCAdmin Site
WidgetToken| Name | Description | Type | Additional information | 
|---|---|---|---|
| token | string | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "token": "sample string 1"
}
        application/xml, text/xml
            Sample:
<WidgetToken xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise"> <token>sample string 1</token> </WidgetToken>
Response Information
Resource Description
TenantInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| IAMKey | globally unique identifier | 
                             None.  | 
                |
| TenantShortName | string | 
                             None.  | 
                |
| TenantCode | string | 
                             None.  | 
                |
| DomainUrl | string | 
                             None.  | 
                |
| DomainLoginUrl | string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
{
  "IAMKey": "0a6e908e-0695-4e7d-bfa4-ba2c1071948d",
  "TenantShortName": "sample string 2",
  "TenantCode": "sample string 3",
  "DomainUrl": "sample string 4",
  "DomainLoginUrl": "sample string 5"
}
        application/xml, text/xml
            Sample:
<TenantInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise"> <DomainLoginUrl>sample string 5</DomainLoginUrl> <DomainUrl>sample string 4</DomainUrl> <IAMKey>0a6e908e-0695-4e7d-bfa4-ba2c1071948d</IAMKey> <TenantCode>sample string 3</TenantCode> <TenantShortName>sample string 2</TenantShortName> </TenantInfo>