salesagility-suitecrm

Namespace

salesagility-suitecrm

Description:
  • Transform your business with SuiteCRM 7.14.5, the leading open-source CRM. Seamlessly manage customer relationships, gain full data control, and customize your solution for an unbeatable enterprise edge!

Author:

Methods

(async, static) createSalesagilitySuitecrmInstance(context, body) → {SalesagilitySuitecrm}

Description:
  • Create a new Suite CRM instance

Example
import { Context } from '@osaas/client-core';
import { createSalesagilitySuitecrmInstance } from '@osaas/client-services';

const ctx = new Context();
const body: SalesagilitySuitecrmConfig = { name: 'myinstance', ... };
const instance = await createSalesagilitySuitecrmInstance(ctx, body);
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

body SalesagilitySuitecrmConfig

Service instance configuration

Returns:
  • Service instance
Type
SalesagilitySuitecrm

(async, static) getSalesagilitySuitecrmInstance(context, name) → {SalesagilitySuitecrm}

Description:
  • Get a Suite CRM instance

Example
import { Context } from '@osaas/client-core';
import { getSalesagilitySuitecrmInstance } from '@osaas/client-services';

const ctx = new Context();
const instance = await getSalesagilitySuitecrmInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the suitecrm to be retrieved

Returns:
  • Service instance
Type
SalesagilitySuitecrm

(async, static) removeSalesagilitySuitecrmInstance(context, name)

Description:
  • Remove a Suite CRM instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the suitecrm to be removed