POST Api/Login/TokenRefresh
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
AuthResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
None. |
|
| WasError | boolean |
None. |
|
| ErrorType | string |
None. |
|
| ErrorDescription | string |
None. |
|
| Message | string |
None. |
|
| UserId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Token": "sample string 1",
"WasError": true,
"ErrorType": "sample string 3",
"ErrorDescription": "sample string 4",
"Message": "sample string 5",
"UserId": "49120d6f-5d14-4454-a869-597e649e9d46"
}
application/xml, text/xml
Sample:
<AuthResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evidon.Auth.Shared.Standard.Models.Auth"> <ErrorDescription>sample string 4</ErrorDescription> <ErrorType>sample string 3</ErrorType> <Message>sample string 5</Message> <Token>sample string 1</Token> <UserId>49120d6f-5d14-4454-a869-597e649e9d46</UserId> <WasError>true</WasError> </AuthResponse>