POST api/LogIn/RefreshToken
Refresh access token based on refresh token
Request Information
URI Parameters
None.
Body Parameters
RefreshTokenRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RefreshToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RefreshToken": "sample string 1"
}
application/xml, text/xml
Sample:
<RefreshTokenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Requests"> <RefreshToken>sample string 1</RefreshToken> </RefreshTokenRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
New tokens
ApiResponseOfRefreshTokenResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Errors | Collection of string |
None. |
|
| Data | RefreshTokenResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Errors": [
"sample string 1",
"sample string 2"
],
"Data": {
"Token": null
}
}
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.