## DeleteProject **post** `/gitpod.v1.ProjectService/DeleteProject` Deletes a project permanently. Use this method to: - Remove unused projects - Clean up test projects - Delete obsolete configurations ### Examples - Delete project: Permanently removes a project. ```yaml projectId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047" ``` ### Body Parameters - `projectId: optional string` project_id specifies the project identifier ### Example ```http curl https://app.gitpod.io/api/gitpod.v1.ProjectService/DeleteProject \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $GITPOD_API_KEY" \ -d '{}' ``` #### Response ```json {} ```