BoxLang 🚀 A New JVM Dynamic Language Learn More...
Integrate with the Plaid API from CFML.
box install cfPlaid
There are two ways to configure API credentials for cfPlaid:
.env
filecommandbox-dotenv
# Plaid API creds
PLAID_URL=https://sandbox.plaid.com
# Plaid keys
PLAID_CLIENT_ID=123_FIXME
PLAID_CLIENT_SECRET=456_FIXME
Add the following to config/ColdBox.cfc
and update as necessary:
moduleSettings = {
cfPlaid = {
api_url : "https://sandbox.plaid.com",
api_client_id : "123_FIXME",
api_client_secret: "456_FIXME"
}
}
The cfPlaid class documentation is auto-generated via DocBox and hosted on Github Pages at michaelborn.github.io/cfPlaid/
location
in box.json
(0c36d96)location
in box.json
(0c36d96)
$
box install cfPlaid