Table of Contents
/Tokens/GetToken
Gets information about a token.
JSON
- Request
{ "tokenId":Required(Str(PTokenId)) }
- Response (if successful)
{ "Token":Required(PToken) }
XML
- Request
<GetToken xmlns="https://waher.se/Schema/BrokerAgent.xsd" tokenId=(Required(Str(PTokenId))) />
- Response (if successful)
<TokenResult xmlns="https://waher.se/Schema/BrokerAgent.xsd"> <Token> <[Required(PToken)]> </Token> </TokenResult>
Input Parameters
Parameter | Description |
---|---|
PTokenId |
ID to token to get. |
Response Parameters
Parameter | Description |
---|---|
PToken |
Token, if authorized and found. |
Javascript Library
Use the following asynchronous method in the Javascript Library, to call this resource.
var Response = await AgentAPI.Tokens.GetToken(TokenId);