Skip to main content

install

client.apps.install(data: InstallAppRequest): Promise<unknown>

Installs an application.

Downloads and registers an app, making it available in the CodeBolt environment for use.

Parameters

ParameterTypeRequiredDescription
dataInstallAppRequestYesThe installation configuration

Returns

Promise<unknown> — A promise that resolves when the app has been installed

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.apps.install(/* InstallAppRequest */);
console.log(result);