Integrate with the Plaid API from CFML.
- Basic Account requests
- More coming soon!
- Install this module in your app -
box install cfPlaid
- Add the required configuration either via environment variables OR module settings
There are two ways to configure API credentials for cfPlaid:
- Using a
.env
file - Using Module Settings
# 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/