Skip to main content

get

client.agentDeliberation.get(id: string): Promise<Deliberation>

Retrieves a specific deliberation by ID.

Returns the full deliberation record including its topic, status, participants, and summary.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the deliberation

Returns

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

Example

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

const client = new CodeBoltClient();

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