GET api/Security/RequestReusableToken/{SessionToken}

Requests a reusable token to allow the user to log in on in the future with that token and not their username and password

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SessionToken

The session token for the current user session

string

Required

Body Parameters

None.

Response Information

Resource Description

Status code and reusable token if appropriate

StatusStringOfReusableTokenResult
NameDescriptionTypeAdditional information
StatusEnum

ReusableTokenResult

None.

Status

string

None.

Result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusEnum": 0,
  "Status": "Success",
  "Result": "sample string 2"
}

application/xml, text/xml

Sample:
<StatusStringOfReusableTokenResultBK6DH5fG xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMSConnector">
  <Result>sample string 2</Result>
  <Status>Success</Status>
  <StatusEnum>Success</StatusEnum>
</StatusStringOfReusableTokenResultBK6DH5fG>