Prerequisites#
Before you begin, you need to have a Bankingcircle account. Make sure you have a Bankingcircle API key and secret, with the least amount of permissions required to access the functionality of the Bankingcircle Connector you plan to use.
Make sure to create an API key dedicated to Formance. Doing so will improve your auditability and security and will allow you to revoke access to Formance at any time if needed.
Installation#
curl -X POST $FORMANCE_API_URL/api/payments/connectors/bankingcircle \
-H "Content-Type: application/json" \
-d @config.jsonPOST/api/payments/connectors/bankingcircle
With config.json containing:
JSON
{
"authorizationEndpoint": "string",
"endpoint": "string",
"name": "string",
"password": "string",
"pollingPeriod": "30m",
"userCertificate": "string",
"userCertificateKey": "string",
"username": "string"
}