GET api/sso/token?userToken={userToken}

Retrieves a short lived SSO token for given account. No parameters are needed for this function.

Request Information

Authentication Method

Partner/Account Authentication

URI Parameters

NameDescriptionTypeAdditional information
userToken

The 20 character user token given during account creation

string

Required

Body Parameters

None.

Response Information

Successful Response:

Resource Description

SSO Token
NameDescriptionTypeAdditional information
token

string

 

Response Formats

application/json, text/json

Sample:
{
  "token": "sample string 1"
}

application/xml, text/xml

Sample:
<SSO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SiteWit.PartnerAPI.Models.ReturnModels">
  <token>sample string 1</token>
</SSO>