POST api/user/auth/refresh?authToken={authToken}&refreshToken={refreshToken}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| authToken | string |
Required |
|
| refreshToken | string |
Required |
Body Parameters
None.
Response Information
Resource Description
AuthResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Token | string |
None. |
|
| RefreshToken | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"Token": "sample string 2",
"RefreshToken": "sample string 3"
}
application/xml, text/xml
Sample:
<AuthResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <Id>sample string 1</Id> <RefreshToken>sample string 3</RefreshToken> <Token>sample string 2</Token> </AuthResponse>