Description
n8n-nodes-nosilo
Community node for n8n that integrates with noSilo and lets you fetch training/requirement completion data for all users.
🧪 Status: early version (single operation)
Currently supports one read-only operation: fetching requirement results for all users via theGetRequirementResultsAPI method.
Features
- Simple integration with the noSilo API using Bearer API Key authentication
- One operation available:
- Get Requirements Results – returns requirement/training completion status for all users
- Designed as a clean, focused community node that can be extended with more noSilo operations in the future
Requirements
-
n8n (self-hosted or desktop), version 1.x
-
Node.js ≥ 18 (LTS recommended)
-
A valid noSilo API Key with permission to call:
GET https://app.nosilo.io/api/api-client/method?action=GetRequirementResults
Installation
1. Install the package
In the directory where you run n8n (for example, where your .n8n folder lives), install the package via npm:
npm install n8n-nodes-nosilo
2. Using with Docker (optional)
If you run n8n via Docker, you have two main options:
- Add the package to your custom image, OR
- Use the
N8N_CUSTOM_EXTENSIONSenvironment variable and let n8n install the package at startup.
Example:
export N8N_CUSTOM_EXTENSIONS="n8n-nodes-nosilo"
n8n start
Consult the n8n documentation for more details on loading custom/community nodes in Docker.
3. Restart n8n
After installation:
- Restart your n8n instance.
- On startup, you should see logs indicating that the
n8n-nodes-nosilopackage (community node) has been loaded.
Credentials – noSilo API
This node uses a dedicated credential type: noSilo API.
- In n8n, go to the Credentials section.
- Create new credentials of type noSilo API.
- In the API Key field, paste your noSilo API Key.
- Save the credentials.
The node will automatically add the following HTTP header to all outgoing requests:
Authorization: Bearer <API_KEY>
You do not need to configure this header manually.
Usage
1. Add the node to your workflow
- Open or create a workflow in n8n.
- Click the + button on the canvas to add a new node.
- Search for
noSilo. - Select the noSilo integration.
- Inside that integration, choose the Get Requirements Results action.
2. Configure credentials
- In the node parameters, find the Credentials section.
- Select existing credentials of type noSilo API, or create new ones:
- Choose noSilo API.
- Provide your API Key.
- Save the credentials.
3. Execute the node
- Optionally add a Manual Trigger node at the beginning of the workflow.
- Execute the workflow (or just the noSilo node).
- If everything is configured correctly, the node will:
- Call the noSilo API using your API Key.
- Return a list (array) of objects with requirement/training completion data.
The returned data typically includes, among other fields:
- Requirement information (id, name, classification, categories, etc.)
- User information (id, full name, email, position, organization structure)
- Completion status flags
- Dates (createdDate, startedDate, finishedDate, validTo)
- Additional assignment and custom fields (depending on your noSilo configuration)
Operation details
Operation: Get Requirements Results
- Label in node: Get Requirements Results
- Purpose: Returns completion status of requirements/trainings for all users.
- HTTP Method: GET
- Base URL: https://app.nosilo.io
- Path: /api/api-client/method
- Query string:
- action =
GetRequirementResults
- action =
- Authentication: Bearer API Key (noSilo API credentials in n8n)
The effective request looks like:
GET https://app.nosilo.io/api/api-client/method?action=GetRequirementResults
Authorization: Bearer <YOUR_API_KEY>
Accept: application/json
Content-Type: application/json
Development
If you want to develop or extend this node locally (for example, add more noSilo operations), you can clone the repository and use the n8n node CLI.
1. Clone the repository
git clone https://github.com/FilipLangiewicz/n8n-nodes-nosilo.git
cd n8n-nodes-nosilo
2. Install dependencies
npm install
3. Build
npm run build
4. Run in dev mode
npm run dev
This will:
- Start a TypeScript build watcher.
- Launch a local n8n instance (typically at http://localhost:5678).
- Load your node from the local
distfolder.
Any changes you make to the .ts files (e.g. NoSilo.node.ts, NoSiloApi.credentials.ts) will be rebuilt and picked up automatically while the dev process is running.
Extending the node
At the moment, the node exposes a single operation:
Get Requirements Results
You can extend it by:
- Adding more operations to the
propertiessection (for example different actions or endpoints), - Reusing the same
noSiloApicredentials type (Bearer API Key), - Adding additional parameters (query, path, or body fields) for more advanced use cases.
If you follow the same pattern (declarative routing with routing.request), your new operations will appear as separate actions under the same noSilo integration in n8n.
License
MIT