@velocity-bpa/n8n-nodes-railsr
v1.0.0
Published
n8n community node for Railsr embedded finance and multi-rail payment platform
Readme
n8n-nodes-railsr
[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 Railsr's Banking-as-a-Service platform. It includes 7 comprehensive resources for managing digital banking operations including ledgers, payments, beneficiaries, customers, accounts, transactions, and webhooks, enabling complete financial service automation workflows.
Features
- Complete Banking Operations - Full CRUD operations for accounts, customers, and beneficiaries
- Payment Processing - Execute domestic and international payments with comprehensive tracking
- Ledger Management - Real-time balance tracking and transaction recording
- Transaction Monitoring - Query and analyze transaction history with advanced filtering
- Webhook Integration - Automated event handling for real-time notifications
- Secure Authentication - API key-based authentication with enterprise security
- Error Handling - Comprehensive error management with detailed response parsing
- Validation Support - Built-in data validation for all banking operations
Installation
Community Nodes (Recommended)
- Open n8n
- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-railsr - Click Install
Manual Installation
cd ~/.n8n
npm install n8n-nodes-railsrDevelopment Installation
git clone https://github.com/Velocity-BPA/n8n-nodes-railsr.git
cd n8n-nodes-railsr
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-railsr
n8n startCredentials Setup
| Field | Description | Required | |-------|-------------|----------| | API Key | Your Railsr API key from the dashboard | ✓ | | Environment | Production or Sandbox environment | ✓ | | Base URL | API endpoint URL (auto-configured by environment) | ✓ |
Resources & Operations
1. Ledger
| Operation | Description | |-----------|-------------| | Get Balance | Retrieve current ledger balance | | Get Ledger | Fetch ledger details and configuration | | List Entries | Get all ledger entries with filtering | | Create Entry | Add new transaction entry to ledger | | Update Entry | Modify existing ledger entry |
2. Payment
| Operation | Description | |-----------|-------------| | Create Payment | Initiate new payment transaction | | Get Payment | Retrieve payment details by ID | | List Payments | Get all payments with filtering options | | Cancel Payment | Cancel pending payment transaction | | Update Payment | Modify payment details |
3. Beneficiary
| Operation | Description | |-----------|-------------| | Create Beneficiary | Add new payment beneficiary | | Get Beneficiary | Retrieve beneficiary details | | List Beneficiaries | Get all beneficiaries with search | | Update Beneficiary | Modify beneficiary information | | Delete Beneficiary | Remove beneficiary from system |
4. Customer
| Operation | Description | |-----------|-------------| | Create Customer | Register new customer profile | | Get Customer | Retrieve customer details | | List Customers | Get all customers with filtering | | Update Customer | Modify customer information | | Delete Customer | Remove customer from system | | Verify Customer | Execute KYC verification process |
5. Account
| Operation | Description | |-----------|-------------| | Create Account | Open new customer account | | Get Account | Retrieve account details | | List Accounts | Get all accounts with filtering | | Update Account | Modify account settings | | Close Account | Close existing account | | Freeze Account | Temporarily suspend account | | Unfreeze Account | Reactivate frozen account |
6. Transaction
| Operation | Description | |-----------|-------------| | Get Transaction | Retrieve transaction details by ID | | List Transactions | Get transaction history with filtering | | Search Transactions | Advanced transaction search | | Get Statement | Generate account statement |
7. Webhook
| Operation | Description | |-----------|-------------| | Create Webhook | Register new webhook endpoint | | Get Webhook | Retrieve webhook configuration | | List Webhooks | Get all registered webhooks | | Update Webhook | Modify webhook settings | | Delete Webhook | Remove webhook registration | | Test Webhook | Send test payload to endpoint |
Usage Examples
// Create a new customer
{
"personal_details": {
"name": "John Doe",
"date_of_birth": "1990-01-15",
"email": "[email protected]",
"phone": "+1234567890"
},
"address": {
"address_line_one": "123 Main Street",
"address_city": "New York",
"address_postal_code": "10001",
"address_country": "US"
}
}// Execute a payment
{
"payment_type": "domestic",
"amount": 1000.00,
"currency": "GBP",
"beneficiary_id": "ben_12345678",
"reference": "Invoice payment #INV-001",
"payment_date": "2024-01-15"
}// Query transactions with filters
{
"account_id": "acc_12345678",
"from_date": "2024-01-01",
"to_date": "2024-01-31",
"transaction_type": "credit",
"limit": 100
}// Create webhook for payment notifications
{
"url": "https://your-app.com/webhook/railsr",
"events": ["payment.completed", "payment.failed"],
"active": true,
"secret": "webhook_secret_key"
}Error Handling
| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key in credentials configuration | | Insufficient Balance | Account balance too low for transaction | Check account balance before payment execution | | Invalid Beneficiary | Beneficiary ID not found or inactive | Verify beneficiary exists and is active | | Rate Limit Exceeded | Too many API requests in time window | Implement delays between requests | | Validation Error | Required fields missing or invalid format | Check field requirements in API documentation | | Network Timeout | Request timed out during API call | Retry with exponential backoff strategy |
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
- API Documentation: Railsr API Docs
- Developer Portal: Railsr Developer Hub
