Consent Types
Overview
The data that your Application can retrieve from an Account Servicer is all dependent on consentTypes
.
What is a ConsentType?
A consentType
is a particular scope that represents the data attributes you are asking your End-User to consent to sharing with you. This can be configured against your Application on the consent page in the Developer Portal.
Available consentTypes
ConsentTypes ultimately limit the API endpoints your Application will have access to. Below is a mapping of ConsentTypes to API Endpoints.
ConsentType | Description | API Endpoints |
---|---|---|
ReadAccounts | Account names, number and types | /accounts /account-groups |
ReadBalances | Account balances and holdings | /accounts/{accountId}/holdings /accounts/{accountId}/cash-balances |
ReadExternalAccounts | External Account information registered at the Account Servicer. Including external bank accounts that are the source or recipient of funds | /external-accounts /customers/{customerId}/external-accounts /account-groups/{accountGroupId}/external-accounts |
ReadBeneficiaries | Details of trusted beneficiaries set up against a payment account | /accounts/{accountId}/beneficiaries |
ReadParty | Contact details of individuals linked to an account as held by the Account Servicer. Can include names, phone numbers, emails and physical addresses | /customers /customers/{customerId}/addresses |
ReadTransactions | Amount, date, type, and a description of a transaction against an account | /accounts/{accountId}/transactions |
ReadDocuments | Documents held by the Account Servicer. Including but not limited to cash statements, valuation reports etc | /customers/{customerId}/documents /account-groups/{accountGroupId}/documents /accounts/{accountId}/documents |
ReadAgents | Account servicing agents and organisations registered at the Account Servicer | /servicing-agents /servicing-organisations |
WritePayments | Ability to initiate a payment against a payment account | /payment-instructions |
Can I edit the consentTypes I am requesting?
Yes you can, however data associated with any newly added
consentType
will not be available to the API endpoints until a new consent journey is completed.
Updated 7 months ago