Open Banking is now released for our customers via API. Open Banking Consent
- Added a new endpoint to query single open banking consent: Get Open Banking Consent API
GET /open-banking/{openBankingCode}/consents/{id}
{
"workflow": {},
"data": {
"consent": {
"id": "00000000-0000-0000-0000-000000000000",
"thirdPartyProvider": {
"name": "Example TPP Company Limited",
"website": "https://example.com",
"applicationName": "Example Third Party Application",
"applicationDescription": "Test harness app for integration environment",
"applicationWebsite": "https://example.com"
},
"status": "authorised",
"content": {
"scope": "accounts"
},
"requestCreatedDateTime": "2023-05-11T09:17:59",
"requestExpiryDateTime": "2023-05-11T09:27:59",
"grantedDateTime": "2023-05-11T09:18:53",
"expiryDateTime": "2023-08-09T09:18:53"
}
},
"connect": {},
"metadata": {}
}
- Added a new endpoint to query open banking consent list: Lİst Open Banking Consent API
- Added a new endpoint to update open banking consent: Update Open Banking Consent API
PATCH /open-banking/{openBankingCode}/consents/{id}
{
"workflow": {
"code": "direct"
},
"data": {
"consent": {
"action": "revoke"
}
},
"connect": {},
"metadata": {}
}
- Added accountHolderIdentityType to the account JSON object. Accounts
Generic Transaction API changes:
- Added creationDateTimeFrom and creationDateTimeTo to the generic transaction query parameter. This feature is added to enable filtering by date for Generic Transaction API. List Generic Transaction
Account API changes:
- Added payableBalance to the account JSON object. This feature is added to show a payable balance of client accounts. Accounts
Client API changes:
- Added fullname instead of title to client and client relation JSON objects for get and list API response body. List Clients