GET api/auth/isb/callback?Code={Code}&Iss={Iss}&State={State}&ClientId={ClientId}
Callback page registered at Íslandsbanki that handles token exchange
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Iss | string |
None. |
|
| State | string |
None. |
|
| ClientId | string |
None. |
Body Parameters
None.
Response Information
Resource Description
AuthCallbackResponse
AuthCallbackResponse| Name | Description | Type | Additional 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>