eyevinn-intercom-manager
- Description:
Open Source Intercom Solution providing production-grade audio quality and real-time latency. Powered by Symphony Media Bridge open source media server.
Join our Slack community for support and customization. Contact sales@eyevinn.se for further development and support. Visit Eyevinn Technology for innovative video solutions.
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createEyevinnIntercomManagerInstance(context, body) → {EyevinnIntercomManager}
- Description:
Create a new Intercom instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnIntercomManagerInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnIntercomManagerConfig = { name: 'myinstance', ... };
const instance = await createEyevinnIntercomManagerInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnIntercomManagerConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getEyevinnIntercomManagerInstance(context, name) → {EyevinnIntercomManager}
- Description:
Get a Intercom instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnIntercomManagerInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnIntercomManagerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the system to be retrieved |
Returns:
- Service instance
(async, static) removeEyevinnIntercomManagerInstance(context, name)
- Description:
Remove a Intercom instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the system to be removed |