Skip to main content

sendFeatureToChat

client.roadmap.sendFeatureToChat(featureId: string, data?: SendFeatureToChatRequest): Promise<unknown>

Sends a feature to the chat for discussion.

Shares the feature details in a chat context so that team members or agents can discuss and collaborate on the feature requirements.

Parameters

ParameterTypeRequiredDescription
featureIdstringYesThe unique identifier of the feature to send to chat
dataSendFeatureToChatRequestNoOptional parameters controlling how the feature is shared

Returns

Promise<unknown> — A promise that resolves when the feature has been sent to chat

Example

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

const client = new CodeBoltClient();

const result = await client.roadmap.sendFeatureToChat('featureId');
console.log(result);