GET api/token
Gets token
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
TokenModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Token |
Given token |
globally unique identifier |
None. |
| PersistenceInSeconds |
Token will be invalid after the given number of seconds |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Token": "e2edee98-5047-4dce-a582-62f98cb2515b",
"PersistenceInSeconds": 2
}
application/xml, text/xml
Sample:
<TokenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bosman.Connect10.Models"> <PersistenceInSeconds>2</PersistenceInSeconds> <Token>e2edee98-5047-4dce-a582-62f98cb2515b</Token> </TokenModel>