Skip to main content

getIdea

client.roadmap.getIdea(ideaId: string): Promise<RoadmapIdea>

Retrieves a specific idea by its ID.

Fetches the full details of a single idea including its status and review history.

Parameters

ParameterTypeRequiredDescription
ideaIdstringYesThe unique identifier of the idea

Returns

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

Example

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

const client = new CodeBoltClient();

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