Skip to main content

getEnvAndServices

client.application.getEnvAndServices(): Promise<EnvAndServices>

Retrieves environment variables and service configurations.

Returns the environment variables and external service connection details configured for the current workspace.

Parameters

No parameters.

Returns

Promise<EnvAndServices> — A promise that resolves to the EnvAndServices object

Example

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

const client = new CodeBoltClient();

const result = await client.application.getEnvAndServices();
console.log(result);