Skip to main content

getInstalledProvider

client.environments.getInstalledProvider(id: string): Promise<InstalledProvider>

Retrieves a specific installed provider by its ID.

Returns the full details of a single provider including its configuration and current state.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the installed provider

Returns

Promise<InstalledProvider> — A promise that resolves to the

Example

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

const client = new CodeBoltClient();

const result = await client.environments.getInstalledProvider('id');
console.log(result);