Skip to main content

getById

client.threads.getById(id: string): Promise<Thread>

Retrieves a thread by its unique identifier.

Fetches the complete thread object including all its properties and current state. This is the primary method for accessing thread details when you know the thread's ID.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the thread to retrieve

Returns

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

Example

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

const client = new CodeBoltClient();

const result = await client.threads.getById('id');
console.log(result);