GET api/Account/GetToken

Login user and get token object containing the token, accountguid and loginmessage

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

token object containing the token, accountguid and loginmessage

Token
NameDescriptionTypeAdditional information
TokenValue

string

None.

AccountGuid

globally unique identifier

None.

LoginMessage

string

None.

IsTestUser

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "TokenValue": "sample string 1",
  "AccountGuid": "59d78b89-39d4-449f-9cf4-647c7bf46718",
  "LoginMessage": "sample string 3",
  "IsTestUser": 4
}

application/xml, text/xml

Sample:
<Token xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Core.Models">
  <AccountGuid>59d78b89-39d4-449f-9cf4-647c7bf46718</AccountGuid>
  <IsTestUser>4</IsTestUser>
  <LoginMessage>sample string 3</LoginMessage>
  <TokenValue>sample string 1</TokenValue>
</Token>