Skip to main content

getThreadsForGroup

client.projects.getThreadsForGroup(groupId: string): Promise<string[]>

Retrieves all thread identifiers assigned to a specific task group.

Returns the list of thread IDs that belong to the specified group.

Parameters

ParameterTypeRequiredDescription
groupIdstringYesThe unique identifier of the task group

Returns

Promise<string[]> — A promise that resolves to an array of thread identifier strings

Example

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

const client = new CodeBoltClient();

const result = await client.projects.getThreadsForGroup('groupId');
console.log(result);