Skip to main content

deletePhase

client.roadmap.deletePhase(phaseId: string): Promise<unknown>

Deletes a roadmap phase.

Permanently removes a phase and potentially its associated features. This action cannot be undone.

Parameters

ParameterTypeRequiredDescription
phaseIdstringYesThe unique identifier of the phase to delete

Returns

Promise<unknown> — A promise that resolves when the phase has been deleted

Example

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

const client = new CodeBoltClient();

const result = await client.roadmap.deletePhase('phaseId');
console.log(result);