Skip to main content

getThreadGroupMappings

client.projects.getThreadGroupMappings(): Promise<ThreadGroupMapping[]>

Retrieves all thread-to-group assignment mappings.

Returns the complete mapping of which threads are assigned to which task groups, useful for building navigation or overview UIs.

Parameters

No parameters.

Returns

Promise<ThreadGroupMapping[]> — A promise that resolves to an array of thread-group mapping entries

Example

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

const client = new CodeBoltClient();

const result = await client.projects.getThreadGroupMappings();
console.log(result);