svensson00-spectercrm
- Description:
Revolutionize your CRM management with SpecterCRM's seamless multi-tenant SaaS architecture! Effortlessly handle organizations, contacts, and deals while benefiting from advanced deduplication, comprehensive reporting, and robust API integrations. Upgrade to the all-in-one CRM solution today for streamlined, data-driven success!
- Copyright:
- 2026 Eyevinn Technology AB
Methods
(async, static) createSvensson00SpectercrmInstance(context, body) → {Svensson00Spectercrm}
- Description:
Create a new Specter CRM instance
Example
import { Context } from '@osaas/client-core';
import { createSvensson00SpectercrmInstance } from '@osaas/client-services';
const ctx = new Context();
const body: Svensson00SpectercrmConfig = { name: 'myinstance', ... };
const instance = await createSvensson00SpectercrmInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
Svensson00SpectercrmConfig | Service instance configuration |
Returns:
- Service instance
- Type
- Svensson00Spectercrm
(async, static) getSvensson00SpectercrmInstance(context, name) → {Svensson00Spectercrm}
- Description:
Get a Specter CRM instance
Example
import { Context } from '@osaas/client-core';
import { getSvensson00SpectercrmInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getSvensson00SpectercrmInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the crm to be retrieved |
Returns:
- Service instance
- Type
- Svensson00Spectercrm
(async, static) removeSvensson00SpectercrmInstance(context, name)
- Description:
Remove a Specter CRM instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the crm to be removed |