POST Api/Login/TokenRefresh

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

AuthResponse
NameDescriptionTypeAdditional 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": "cdd97cb4-3c25-4f69-a25a-19d035e4ed16"
}

application/xml, text/xml

Sample:
<AuthResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evidon.Auth.CommonLib.Models.Auth">
  <ErrorDescription>sample string 4</ErrorDescription>
  <ErrorType>sample string 3</ErrorType>
  <Message>sample string 5</Message>
  <Token>sample string 1</Token>
  <UserId>cdd97cb4-3c25-4f69-a25a-19d035e4ed16</UserId>
  <WasError>true</WasError>
</AuthResponse>