Detailed Summary
Added the scope in the response payload a string that lists
the permissions granted to the issued access token.
Changes
- Request changes: No Changes
- Response changes: Added
scope
Examples
{
"access_token": "eyJhbGciOiJSUzI.....",
"expires_in": 1800,
"refresh_expires_in": 0,
"token_type": "Bearer",
"not-before-policy": 0
}
{
"access_token": "eyJhbGciOiJSUzI.....",
"expires_in": 1800,
"refresh_expires_in": 0,
"token_type": "Bearer",
"not-before-policy": 0,
"scope": "ob:accounts:read_write_api:read ob:accounts:data:read email..."
}
Detailed Summary
Added required purpose_code to request body to identify the
purpose and change the api_set value from AISP to AIS.
Changes
- Header: change the
X-API-Versionvalue from2.0.0to2.1.0 - Body: new required field
purpose_code - Body: change required field enum
api_settoAIS - Response changes: no changes to response schema
Detailed Summary
Added required application_purpose_code to request body and
fixed typo in application_redirect_url.
Changes
- Header: change the
X-API-Versionvalue from2.0.0to2.1.0 - Body: new required field
application_purpose_code - Body: change required field
application_redirct_urltoapplication_redirect_url - Response changes: no changes to response schema
Detailed Summary
Changed the response root element from json array [object] to
{object} and returned the response Meta and Links.
Changes
- Request changes: No changes
- Response changes: Root element structure update
Examples
[
"ConsentId": "95dd67a7-b....",
"Account": [
{
"AccountId": "100004000.....",
...
}
]
]
{
"ConsentId": "95dd67a7-ba.....",
"AccountId": "10000400......",
"Account": {
"AccountHolderName": "Mit......",
...
},
"Meta": { "TotalPages": 1 },
"Links": { "Self": "..." }
}
Note: Similar "root element" changes were applied to:
/balances1,
/beneficiaries1,
/direct-debits1,
/parties1,
/account-parties1,
/scheduled-payments1,
/standing-orders1, and
/transactions1.