POST authenticate/refresh

Request Information

URI Parameters

None.

Body Parameters

JwtTokensModel
NameDescriptionTypeAdditional information
JwtToken

string

None.

JwtRefreshToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "JwtToken": "sample string 1",
  "JwtRefreshToken": "sample string 2"
}

application/xml, text/xml

Sample:
<JwtTokensModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBI.WebAPI.RegistrationGateway.Business.Models.Registration.Authentication">
  <JwtRefreshToken>sample string 2</JwtRefreshToken>
  <JwtToken>sample string 1</JwtToken>
</JwtTokensModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JwtTokensModel
NameDescriptionTypeAdditional information
JwtToken

string

None.

JwtRefreshToken

string

None.

Response Formats

application/json, text/json

Sample:
{
  "JwtToken": "sample string 1",
  "JwtRefreshToken": "sample string 2"
}

application/xml, text/xml

Sample:
<JwtTokensModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBI.WebAPI.RegistrationGateway.Business.Models.Registration.Authentication">
  <JwtRefreshToken>sample string 2</JwtRefreshToken>
  <JwtToken>sample string 1</JwtToken>
</JwtTokensModel>