POST api/Security/VerifyReusableToken
Checks a reusable token without creating a new session
Request Information
URI Parameters
None.
Body Parameters
The reusable token of the user logging in
stringRequest Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Status code and user details if appropriate
LogonResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Firstname | string |
None. |
|
| Surname | string |
None. |
|
| PhoneNumber | string |
None. |
|
| Company | string |
None. |
|
| Token | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "Success",
"Firstname": "sample string 2",
"Surname": "sample string 3",
"PhoneNumber": "sample string 4",
"Company": "sample string 5",
"Token": "sample string 6"
}
application/xml, text/xml
Sample:
<LogonResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMSConnector"> <Company>sample string 5</Company> <Firstname>sample string 2</Firstname> <PhoneNumber>sample string 4</PhoneNumber> <Status>Success</Status> <Surname>sample string 3</Surname> <Token>sample string 6</Token> </LogonResult>