v0 Platform API/API Reference/Projects

Delete Project

Deletes a specific project based on the provided projectId. This operation marks the project as deleted and is irreversible.

DELETE/v1/projects/{projectId}

Usage

TypeScript Example
import { v0 } from 'v0-sdk'

const result = await v0.projects.delete({
  projectId: 'abcd1234',
})

console.log(result)

API Signature

Request

Path Parameters

projectId: string

The unique identifier of the project to delete. This must be passed as a path parameter in the URL.

Response

id: string

The unique identifier of the deleted project.

object: 'project'

Fixed value identifying this object as a project.

deleted: 'true'

Confirmation that the project has been deleted.