birme-contact-form-svc
- Description:
Streamline your communication with our Contact Form Service! Seamlessly send messages from your website directly to Slack. Easy-to-install, Docker-ready backend ensures you never miss a lead. Try it now!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createBirmeContactFormSvcInstance(context, body) → {BirmeContactFormSvc}
- Description:
Create a new Contact Form Service instance
Example
import { Context } from '@osaas/client-core';
import { createBirmeContactFormSvcInstance } from '@osaas/client-services';
const ctx = new Context();
const body: BirmeContactFormSvcConfig = { name: 'myinstance', ... };
const instance = await createBirmeContactFormSvcInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
BirmeContactFormSvcConfig | Service instance configuration |
Returns:
- Service instance
- Type
- BirmeContactFormSvc
(async, static) getBirmeContactFormSvcInstance(context, name) → {BirmeContactFormSvc}
- Description:
Get a Contact Form Service instance
Example
import { Context } from '@osaas/client-core';
import { getBirmeContactFormSvcInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getBirmeContactFormSvcInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the service to be retrieved |
Returns:
- Service instance
- Type
- BirmeContactFormSvc
(async, static) removeBirmeContactFormSvcInstance(context, name)
- Description:
Remove a Contact Form Service instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the service to be removed |