This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Deploying APIs for Berlin
This document guides you with the assumption that you have set up WSO2 Open Banking Key Manager, and WSO2 Open Banking API Manager in separate servers.
Configuring the velocity_template.xml file
The <WSO2_OB_APIM_HOME>/repository/resources/api_templates/velocity_template.xml
file checks the deployed specification. It is by default configured to support berlin
specification with the following handlers.
Replace the <WSO2_OB_KM_HOST>
placeholder with the hostname of your Open Banking Key Manager server.
#if($apiObj.additionalProperties.get("ob-spec") == "berlin") ## add ob-berlin specific handlers before the APIManagerExtensionHandler <handler class="com.wso2.finance.open.banking.gateway.api.schema.validation.RequestSchemaValidationHandler"/> <handler class="com.wso2.finance.open.banking.berlin.consent.enforcement.ConsentEnforcementHandler"> <property name="accountValidationUrl" value="https://<WSO2_OB_KM_HOST>:9446/consent/berlin110/accounts-validation"/> <property name="keyStore" value="./repository/resources/security/wso2carbon.jks"/> <property name="password" value="wso2carbon"/> <property name="alias" value="wso2carbon"/> </handler> ## end of Berlin-specific handlers #end
Configuring the sequence file
The <WSO2_OB_APIM_HOME>/repository/resources/finance/apis/berlin-group.org/PSD2API_1.3.3/dynamic-endpoint-insequence-1.3.3.xml
file contains in sequences for accounts, payments and confirmation of funds APIs.
- The
<WSO2_OB_KM_HOST>
placeholders in this file need to be replaced by the hostname of your WSO2 Open Banking Key Manager server. The WSO2 Open Banking API Manager includes a mock bank backend which is configured by default in the in sequences. Ideally, the occurrences of
https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/<API_NAME>
should be replaced by the core banking system's API endpoints corresponding to the production and sandbox environments respectively.For more information, see Integrating Core Banking System for Berlin
If you are using the following deployment options, update the placeholders as follows:
<sequence xmlns="http://ws.apache.org/ns/synapse" name="dynamic-endpoint-insequence-1.3.3.xml"> <property name="endpointURI" expression="get-property('To')"/> <switch source="$ctx:endpointURI"> <case regex=".*payments.*"> <header name="TPP-Unique-ID" scope="transport" expression="get-property('api.ut.consumerKey')"/> <filter source="$ctx:endpointURI" regex=".*authorisations.*"> <then> <header name="To" value="https://<WSO2_OB_KM_HOST>:9446/consent/berlin130/authorisation"/> </then> <else> <filter source="get-property('api.ut.HTTP_METHOD')" regex="POST"> <then> <header name="To" value="https://<WSO2_OB_KM_HOST>:9446/consent/berlin130/payments"/> <filter source="$ctx:endpointURI" regex="^((?!\/bulk-payments).)*$"> <then> <payloadFactory media-type="json"> <format>[$1]</format> <args> <arg evaluator="json" expression="$"/> </args> </payloadFactory> </then> </filter> </then> <else> <property name="resourcePath" scope="default" type="STRING" value=""/> <property expression="get-property('resourcePath')" name="REST_URL_POSTFIX" scope="axis2" type="STRING"/> <header name="To" expression="fn:concat('https://<WSO2_OB_KM_HOST>:9446/consent/berlin130/payments', get-property('api.ut.resource'))"/> </else> </filter> </else> </filter> </case> <case regex=".*/accounts.*"> <filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION"> <then> <header name="To" value="https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/accounts"/> </then> <else> <header name="To" value="https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/accounts"/> </else> </filter> </case> <case regex=".*/card-accounts.*"> <filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION"> <then> <header name="To" value="https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/accounts"/> </then> <else> <header name="To" value="https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/accounts"/> </else> </filter> </case> <case regex=".*/consents.*"> <filter source="$ctx:endpointURI" regex=".*authorisations.*"> <then> <header name="To" value="fn:concat('https://<WSO2_OB_KM_HOST>:9446/consent/berlin130/authorisation/accounts', get-property('api.ut.resource'))"/> </then> <else> <property action="remove" name="REST_URL_POSTFIX" scope="axis2"/> <header name="To" expression="fn:concat('https://<WSO2_OB_KM_HOST>:9446/consent/berlin130' , get-property('api.ut.resource'))"/> <header name="TPP-Unique-ID" expression="get-property('api.ut.consumerKey')" scope="transport"/> <header name="App-ID" expression="get-property('api.ut.application.id')" scope="transport"/> <rewrite> <rewriterule> <action type="replace" regex="\/consents" value="\/accounts" fragment="path"/> </rewriterule> </rewrite> </else> </filter> </case> <case regex=".*/funds-confirmations.*"> <filter source="$ctx:AM_KEY_TYPE" regex="PRODUCTION"> <then> <header name="To" value="https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/cof"/> </then> <else> <header name="To" value="https://<WSO2_OB_APIM_HOST>:9443/open-banking-berlin/services/cof"/> </else> </filter> </case> </switch> <property name="ENDPOINT_ADDRESS" expression="get-property('To')"/> </sequence>
WSO2 Open Banking Berlin has the Given below is the procedure to configure and publish the Before you begin Sign in to the API Publisher Click ADD NEW API. Select I Have an Existing API option. Select the Swagger File option and browse for the swagger definition by clicking on the Browse button. Select the Click Start Creating. You are directed to the Design API stage. Design General Details are loaded for you in the Design tab. You need to set the Click Upload In Flow and select the Click Next: Manage to navigate to the next level. Expand API Properties and add the following as Additional properties. Click the + button to save the values. Click Save & Publish.Configuring an API
NextGenPSD2XS2AFramework-1.3.3
API which contains the v1.3 resource for Accounts, Payments and Confirmation of Funds flows. The swagger definition for this API is available in the <WSO2_OB_APIM_HOME>/repository/resources/finance/apis/berlin-group.org/PSD2API_1.3.3/psd2-api_1.3.3_20190412.yaml.
NextGenPSD2XS2AFramework-1.3.3
API. https://<WSO2_OB_KM_HOST>:9446/carbon
. To create users and roles, see configuring users and roles, which elaborates the steps to create the user as the API publisher.https://
<WSO2_OB_APIM_HOST>
:9443/publisher
.<WSO2_OB_APIM_HOME>/repository/resources/finance/apis/berlin-group.org/PSD2API_1.3.3/psd2-api_1.3.3_20190412.yaml
file.context
value as xs2a
<WSO2_OB_APIM_HOME>/repository/resources/finance/apis/berlin-group.org/PSD2API_1.3.3/dynamic-endpoint-insequence-1.3.3.xml
In sequence file.Property Name Property Value ob-spec
berlin
ob-api-type
psd2
https://<WSO2_OB_APIM_HOST>:9443/store.
Summarized information for configuring APIs
API | Implement tab | Manage tab | ||||
---|---|---|---|---|---|---|
Endpoint type | Endpoint | Enable Message mediation | In flow | API property name | API property value | |
NextGenPSD2XS2A Framework - 1.3.3 | Dynamic | N/A | Mark as checked | <WSO2_OB_APIM_HOME>/repository/resources/finance/apis/berlin-group.org/PSD2API_1.3.3/dynamic-endpoint-insequence-1.3.3.xml
| ob-spec | berlin |
ob-api-type | psd2 |
Select the CREATE NEW VERSION tab. Follow the versioning format and define the new version. Click Done. Define the correct version for the API and choose the swagger and In sequence files appropriately. The directory path to the files in the solution pack helps you to choose the correct file. For example, choose the swagger and in sequence files from Click Save & Publish. To get the existing subscriptions to the new version, follow the steps below:Create a new version for an existing API
In the API Publisher of WSO2 Open Banking, users are not allowed to duplicate the scope of an API. Therefore, users are allowed to create a new version for the API in order to share the same scope. See below to find how it is done:https://<WSO2_OB_APIM_HOST>:9443/publisher
), click the API thumbnail to view the API overview.<WSO2_OB_APIM_HOME>/repository/resources/finance/apis/openbanking.org.uk/Accounts/3.1.0
if you want to create the 3.1.0 version of Payment Initiation API..yaml
format and click Open File.In sequence
file for the corresponding API and its version, and click Upload.ob-spec
property is set to reflect the correct specification.
Tick the relevant boxes if you want to:
The For one-off access, this attribute has to be set to '1'. The frequency has to be greater than or equal to 1. Use the below instructions to configure the FrequencyPerDay throttling policy: Open Make sure that the throttling is enabled for Data Publisher under the <DataPublisher> attribute of <ThrottlingConfigurations>: Change the value of the <Username> attribute under <TrafficManager> according. By default, it looks as follows: Change the value of te <connectionfactory.TopicConnectionFactory> attribute under <JMSConnectionParameters> according. By default, it looks as follows: Make sure that the FrequencyPerDay property is enabled in Open the Deploy the throttling policy located in ClickThrottling Policies tab and click Custom Policies tab. Enter the information for the custom policy accordingly.Configure the FrequenyPerDay throttling policy
FrequencyPerDay
value is sent in the consent initiation request body to indicate the requested maximum frequency for access without PSU involvement per day. According to the NextGenPSD2 XS2A framework, the FrequencyPerDay
value needs to be checked when the PSU's IP address is not sent in an API invocation request.<WSO2_OB_APIM_HOME>/repository/conf/api-manager.xml
.<ThrottlingConfigurations>
<DataPublisher>
<Enabled>true</Enabled>
<!--Required in OB-->
<Username>admin@wso2.com@carbon.super</Username>
<JMSConnectionParameters>
<!--Required in OB-->
<connectionfactory.TopicConnectionFactory>amqp://admin!wso2.com!carbon.super:${admin.password}@clientid/carbon?brokerlist='tcp://${carbon.local.ip}:${jms.port}'</connectionfactory.TopicConnectionFactory>
<WSO2_OB_APIM_HOME>/repository/conf/finance/open-banking.xml
as follows:<EnableFrequencyPerDay>true</EnableFrequencyPerDay>
<WSO2_OB_APIM_HOME>/repository/deployment/server/synapse-configs/default/api/<publisher-name>--NextGenPSD2XS2AFramework_v1.xml
file and place CustomThrottlingPolicyHandler before ThrottleHandler as follows:<handler class="com.wso2.finance.open.banking.custom.throttling.CustomThrottlingPolicyHandler"/>
<handler class="org.wso2.carbon.apimgt.gateway.handlers.throttling.ThrottleHandler"/>
<WSO2_OB_APIM_HOME>/repository/resources/finance/scripts/wso2-obam-conf/FrequencyPerDayPolicy
as
a custom throttling policy in the admin portal of WSO2 Open Banking API Manager:https://<WSO2_OB_APIM_HOST>:9443/admin
) and your admin credentials.<WSO2_OB_APIM_HOME>/repository/resources/finance/scripts/wso2-obam-conf/FrequencyPerDayPolicy
and paste it under Siddhi Query
.
Request payload validation
Request payload validation adds flexibility to validate an incoming request against any customisations done to the swagger definition. For example, modify the currency
property in the API swagger and then the solution will validate the incoming request against the updated currency
value. Simply modify the published swagger file and republish the API for the modifications to take effect.
When an API is published, the swagger file is added as a local entry and saved under the <WSO2_OB_APIM_HOME>/repository/deployment/server/synapse-configs/default/local-entries
directory.
To add the swagger as a local entry, the created and published API lifecycles are extended using customised API executor named com.wso2.finance.open.banking.api.executor.OBAPIPublisherExecutor
. For more information on executors, see Extension Points of API Life cycle.
If you modify the Swagger after publishing the API, republish the API to apply the swagger based validations.