Skip to main content

moveIdeaToRoadmap

client.roadmap.moveIdeaToRoadmap(ideaId: string, data?: MoveIdeaToRoadmapRequest): Promise<unknown>

Promotes an idea to the roadmap as a feature.

Converts a reviewed and approved idea into a feature within a specified roadmap phase. This is the final step in the idea-to-feature pipeline.

Parameters

ParameterTypeRequiredDescription
ideaIdstringYesThe unique identifier of the idea to promote
dataMoveIdeaToRoadmapRequestNoOptional parameters including target phase for the new feature

Returns

Promise<unknown> — A promise that resolves when the idea has been promoted to a feature

Example

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

const client = new CodeBoltClient();

const result = await client.roadmap.moveIdeaToRoadmap('ideaId');
console.log(result);