POST api/v1.0/Authentication/Widget

Request Information

URI Parameters

None.

Body Parameters

WidgetToken
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "d8f5d1a0-e3bb-4088-b873-c7337349a7ae",
  "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>d8f5d1a0-e3bb-4088-b873-c7337349a7ae</IAMKey>
  <TenantCode>sample string 3</TenantCode>
  <TenantShortName>sample string 2</TenantShortName>
</TenantInfo>