POST api/token/generate
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
TokenInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| refreshToken | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"refreshToken": "sample string 2"
}
text/xml
Sample:
<TokenInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MiCLAS.WebAPI.Models.Base"> <refreshToken>sample string 2</refreshToken> <token>sample string 1</token> </TokenInfo>