n8n-nodes-dsacrm
v1.0.6
Published
n8n community node for DSACRM SaaS platform
Maintainers
Readme
n8n-nodes-dsacrm
Production-ready n8n community node for integrating with the DSACRM SaaS platform.
Features
- API Key authentication using secure n8n credentials
- Configurable base URL and organization scope
- Full DSACRM resource coverage:
- Lead: Create, Get, Update, Search
- Customer: Create, Get
- Loan Application: Create, Get, Update Status
- Document: Upload, Get
- Verification: PAN, Aadhaar
- Reports: Disbursement, Payout
- Resource and operation dropdowns
- Dynamic field visibility
- Input validation for JSON payload fields
- Continue On Fail support
- Pagination (
Return All,Limit,Page) - Batch processing through standard n8n multi-item execution
Installation
npm install n8n-nodes-dsacrmThen restart n8n.
For detailed deployment options, see INSTALLATION.md.
Credentials
Create a credential of type DSACRM API with:
- Base URL: e.g.
https://api.dsacrm.com - Organization Id
- API Key
Headers sent on every request:
Authorization: Bearer <apiKey>Organization-Id: <organizationId>Content-Type: application/json
Node Usage
- Add DSACRM node to a workflow.
- Select Resource.
- Select Operation.
- Provide IDs/query/body fields as required.
- For write operations, provide
Request Body (JSON). - For list/report operations, use
Return Allor setLimitandPage.
API Endpoint Mapping
POST /api/leadsGET /api/leads/{id}PUT /api/leads/{id}GET /api/leadsPOST /api/customersGET /api/customers/{id}POST /api/applicationsGET /api/applications/{id}PUT /api/applications/{id}/statusPOST /api/documents/uploadGET /api/documents/{id}POST /api/verifications/panPOST /api/verifications/aadhaarGET /api/reports/disbursementGET /api/reports/payout
Development
npm install
npm run buildCompatibility
- Node.js
>=18.17 - n8n latest (community nodes enabled)
License
MIT
