POST api/auth/isb/refreshtoken

Get new access token from given refresh token

Request Information

URI Parameters

None.

Body Parameters

AuthRefreshTokenRequest

AuthRefreshTokenRequest
NameDescriptionTypeAdditional information
RefreshToken

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<AuthRefreshTokenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BankingService.Application.Models.Auth">
  <RefreshToken>sample string 1</RefreshToken>
</AuthRefreshTokenRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AuthCallbackResponse (info: refresh token is the same in request and response)

AuthCallbackResponse
NameDescriptionTypeAdditional information
AccessToken

string

None.

RefreshToken

string

None.

Response Formats

application/json, text/json

Sample:
{
  "accessToken": "sample string 1",
  "refreshToken": "sample string 2"
}

application/xml, text/xml

Sample:
<AuthCallbackResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BankingService.Application.Models.Auth">
  <AccessToken>sample string 1</AccessToken>
  <RefreshToken>sample string 2</RefreshToken>
</AuthCallbackResponse>