Skip to main content

get

client.orchestrator.get(id: string): Promise<OrchestratorInstance>

Retrieves a specific orchestrator instance by its unique identifier.

Returns the full configuration and current state of an orchestrator, including its assigned agents, coordination rules, and execution history.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the orchestrator to retrieve

Returns

Promise<OrchestratorInstance> — A promise that resolves to the orchestrator instance details

Example

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

const client = new CodeBoltClient();

const result = await client.orchestrator.get('id');
console.log(result);