3.8 KiB
3.8 KiB
IRU Integration Guide
Complete Guide for Integrating with DBIS IRU
Overview
This guide provides step-by-step instructions for integrating your Core Banking, CRM, or ERP system with DBIS IRU infrastructure.
Prerequisites
- Active IRU subscription
- API credentials (API key)
- Network connectivity to DBIS infrastructure
- Technical team familiar with your core banking system
Step 1: Obtain IRU Subscription
- Browse marketplace:
https://marketplace.sankofaphoenix.com - Select appropriate IRU offering
- Submit inquiry
- Complete qualification process
- Execute IRU Participation Agreement
- Receive subscription credentials
Step 2: Choose Integration Method
Option A: Pre-Built Connector (Recommended)
If your system is supported, use a pre-built connector:
Supported Systems:
- Temenos T24/Temenos Transact
- Oracle Flexcube
- SAP Banking Services
- Oracle Banking Platform
Installation:
import { pluginRegistry } from '@dbis/iru-sdk';
import { TemenosAdapter } from '@dbis/iru-sdk/adapters/temenos';
// Register adapter
pluginRegistry.register('temenos', new TemenosAdapter({
apiEndpoint: 'https://your-temenos-api.com',
apiKey: 'your-api-key',
}));
Option B: Custom Connector
If your system is not supported, build a custom connector:
import { BasePluginAdapter } from '@dbis/iru-sdk';
class MyCustomAdapter extends BasePluginAdapter {
constructor(config: Record<string, unknown> = {}) {
super('MyCustomAdapter', '1.0.0', config);
}
// Implement required methods
async isAvailable(): Promise<boolean> {
// Check connectivity
}
mapParticipant(internalData: unknown): ParticipantCreateRequest {
// Map your participant data to DBIS format
}
// ... implement other methods
}
Step 3: Configure Connection
-
Obtain API Credentials
- Log into Phoenix Portal
- Navigate to API Settings
- Generate API key
- Download certificate (if mTLS required)
-
Configure Network
- Whitelist DBIS API endpoints
- Configure firewall rules
- Set up VPN (if required)
-
Configure Adapter
const adapter = new TemenosAdapter({ apiEndpoint: process.env.TEMENOS_API_ENDPOINT, apiKey: process.env.TEMENOS_API_KEY, });
Step 4: Test Integration
-
Test Connectivity
const available = await adapter.isAvailable(); console.log('Adapter available:', available); -
Test Participant Mapping
const participant = adapter.mapParticipant(yourParticipantData); console.log('Mapped participant:', participant); -
Test Transfer Posting
const result = await adapter.postTransfer(dbisTransfer); console.log('Transfer posted:', result);
Step 5: Go Live
- Complete integration testing
- Obtain sign-off from DBIS
- Switch to production endpoints
- Monitor initial transactions
- Verify reconciliation
Best Practices
- Idempotency: Always use idempotency keys for transfers
- Error Handling: Implement retry logic with exponential backoff
- Monitoring: Set up alerts for failed transfers
- Reconciliation: Run daily reconciliation
- Security: Rotate API keys regularly
Troubleshooting
Common Issues:
-
Connection Timeout
- Check network connectivity
- Verify firewall rules
- Check API endpoint URL
-
Authentication Failures
- Verify API key is correct
- Check key expiration
- Ensure proper authorization header format
-
Mapping Errors
- Verify data format matches expected schema
- Check required fields are present
- Review adapter mapping logic
Support
- Documentation:
https://docs.dbis.org/iru - Support Portal: Phoenix Portal → Support
- Email: iru-support@dbis.org