POST api/TrackermapAPI?token={token}
Verifies the validity of a token.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
token | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TokenValidationResultName | Description | Type | Additional information |
---|---|---|---|
Token | string |
None. |
|
Message | string |
None. |
|
Succeeded | boolean |
None. |
|
UserId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{ "Token": "sample string 1", "Message": "sample string 2", "Succeeded": true, "UserId": "abf9fb66-dbba-4f6b-be72-1351ab81c31a" }
application/xml, text/xml
Sample:
<TokenValidationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrackerMapLive.Business.Models.General"> <Message>sample string 2</Message> <Succeeded>true</Succeeded> <Token>sample string 1</Token> <UserId>abf9fb66-dbba-4f6b-be72-1351ab81c31a</UserId> </TokenValidationResult>