GET token/refresh

Request Information

URI Parameters

None.

Body Parameters

RefreshTokenModel
NameDescriptionTypeAdditional information
refreshToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "refreshToken": "sample string 1"
}

application/xml, text/xml

Sample:
<RefreshTokenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlDocumentario.WebApplication.Models">
  <RefreshToken>sample string 1</RefreshToken>
</RefreshTokenModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JwtTokenModel
NameDescriptionTypeAdditional information
token

string

None.

expiredIn

string

None.

expiredAt

string

None.

refreshToken

string

None.

Response Formats

application/json, text/json

Sample:
{
  "token": "sample string 1",
  "expiredIn": "sample string 2",
  "expiredAt": "sample string 3",
  "refreshToken": "sample string 4"
}

application/xml, text/xml

Sample:
<JwtTokenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlDocumentario.WebApplication.Models">
  <ExpiredAt>sample string 3</ExpiredAt>
  <ExpiredIn>sample string 2</ExpiredIn>
  <RefreshToken>sample string 4</RefreshToken>
  <Token>sample string 1</Token>
</JwtTokenModel>