n8n-io-n8n
- Description:
Supercharge your team's productivity with n8n, the ultimate workflow automation platform. Enjoy seamless integration with 400+ apps, built-in AI, and full control over your data. Flexibility meets efficiency.
- Copyright:
- 2026 Eyevinn Technology AB
Methods
(async, static) createN8nIoN8nInstance(context, body) → {N8nIoN8n}
- Description:
Create a new n8n instance
Example
import { Context } from '@osaas/client-core';
import { createN8nIoN8nInstance } from '@osaas/client-services';
const ctx = new Context();
const body: N8nIoN8nConfig = { name: 'myinstance', ... };
const instance = await createN8nIoN8nInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
N8nIoN8nConfig | Service instance configuration |
Returns:
- Service instance
- Type
- N8nIoN8n
(async, static) getN8nIoN8nInstance(context, name) → {N8nIoN8n}
- Description:
Get a n8n instance
Example
import { Context } from '@osaas/client-core';
import { getN8nIoN8nInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getN8nIoN8nInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the n8n to be retrieved |
Returns:
- Service instance
- Type
- N8nIoN8n
(async, static) removeN8nIoN8nInstance(context, name)
- Description:
Remove a n8n instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the n8n to be removed |