@velocity-bpa/n8n-nodes-column-baas
v1.0.0
Published
n8n community node for Column BaaS - Banking as a Service platform
Readme
n8n-nodes-column-baas
[Velocity BPA Licensing Notice]
This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).
Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.
For licensing information, visit https://velobpa.com/licensing or contact [email protected].
This n8n community node provides seamless integration with Column BaaS (Banking-as-a-Service) platform, enabling developers to build financial applications with banking capabilities. The node includes 5 core resources with comprehensive CRUD operations for account management, transaction processing, customer onboarding, card issuance, and webhook management.
Features
- Account Management - Create, retrieve, update, and manage bank accounts with full lifecycle control
- Transaction Processing - Execute transfers, payments, and transaction queries with real-time processing
- Customer Onboarding - Complete KYC/AML compliant customer registration and identity verification
- Card Issuance - Issue virtual and physical debit cards with spending controls and limits
- Webhook Integration - Real-time event notifications for account activities and transaction updates
- Compliance Ready - Built-in FDIC insurance and regulatory compliance features
- Developer Friendly - Comprehensive error handling and detailed response data
- Production Grade - Enterprise-level security and reliability for financial operations
Installation
Community Nodes (Recommended)
- Open n8n
- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-column-baas - Click Install
Manual Installation
cd ~/.n8n
npm install n8n-nodes-column-baasDevelopment Installation
git clone https://github.com/Velocity-BPA/n8n-nodes-column-baas.git
cd n8n-nodes-column-baas
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-column-baas
n8n startCredentials Setup
| Field | Description | Required | |-------|-------------|----------| | API Key | Your Column BaaS API key from the developer dashboard | Yes | | Environment | Select sandbox or production environment | Yes |
Resources & Operations
1. Account
| Operation | Description | |-----------|-------------| | Create | Open a new bank account with customer information | | Get | Retrieve account details by account ID | | Update | Modify account settings and configurations | | List | Get all accounts with optional filtering | | Close | Close an existing account | | Get Balance | Retrieve current account balance | | Get Statement | Generate account statements for date ranges |
2. Transaction
| Operation | Description | |-----------|-------------| | Create | Initiate a new transaction or transfer | | Get | Retrieve transaction details by transaction ID | | List | Get transaction history with filtering options | | Cancel | Cancel a pending transaction | | Get Status | Check the current status of a transaction | | Create Transfer | Execute transfers between accounts | | Create Payment | Process external payments |
3. Customer
| Operation | Description | |-----------|-------------| | Create | Register a new customer with KYC information | | Get | Retrieve customer profile and details | | Update | Modify customer information and settings | | List | Get all customers with search capabilities | | Verify Identity | Perform identity verification checks | | Get Documents | Retrieve uploaded customer documents | | Update Status | Change customer verification status |
4. Card
| Operation | Description | |-----------|-------------| | Create | Issue a new virtual or physical debit card | | Get | Retrieve card details and information | | Update | Modify card settings and spending limits | | List | Get all cards for an account or customer | | Activate | Activate a newly issued card | | Block | Temporarily block a card | | Unblock | Unblock a previously blocked card | | Get PIN | Retrieve or reset card PIN |
5. Webhook
| Operation | Description | |-----------|-------------| | Create | Register a new webhook endpoint | | Get | Retrieve webhook configuration details | | Update | Modify webhook settings and events | | List | Get all configured webhooks | | Delete | Remove a webhook endpoint | | Test | Send a test event to webhook endpoint | | Get Events | List available webhook event types |
Usage Examples
// Create a new customer account
{
"resource": "customer",
"operation": "create",
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"phone": "+1234567890",
"dateOfBirth": "1990-01-15",
"ssn": "123-45-6789"
}// Open a bank account
{
"resource": "account",
"operation": "create",
"customerId": "cust_abc123",
"accountType": "checking",
"initialDeposit": 1000.00,
"currency": "USD"
}// Issue a debit card
{
"resource": "card",
"operation": "create",
"accountId": "acct_xyz789",
"cardType": "virtual",
"spendingLimit": 500.00,
"allowedCategories": ["grocery", "gas", "retail"]
}// Process a transaction
{
"resource": "transaction",
"operation": "create",
"fromAccountId": "acct_xyz789",
"toAccountId": "acct_def456",
"amount": 250.00,
"currency": "USD",
"description": "Payment for services"
}Error Handling
| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key is correct and active in Column dashboard | | Insufficient Funds | Account balance too low for transaction | Check account balance before processing transactions | | Customer Not Verified | Customer KYC verification incomplete | Complete identity verification process before account opening | | Card Blocked | Card is temporarily blocked or suspended | Unblock card or contact Column support | | Webhook Delivery Failed | Webhook endpoint not responding | Verify endpoint URL is accessible and returning 200 status | | Rate Limit Exceeded | Too many API requests in time window | Implement request throttling and retry logic |
Development
npm install
npm run build
npm test
npm run lint
npm run devAuthor
Velocity BPA
- Website: velobpa.com
- GitHub: Velocity-BPA
Licensing
This n8n community node is licensed under the Business Source License 1.1.
Free Use
Permitted for personal, educational, research, and internal business use.
Commercial Use
Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.
For licensing inquiries: [email protected]
See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.
Contributing
Contributions are welcome! Please ensure:
- Code follows existing style conventions
- All tests pass (
npm test) - Linting passes (
npm run lint) - Documentation is updated for new features
- Commit messages are descriptive
Support
- Issues: GitHub Issues
- Column API Documentation: Column Developer Docs
- Banking API Reference: Column API Reference
