> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peaka.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Project

> Deletes the specified Project within a Workspace.

A Project is a unit of work where queries, data tables, and semantic catalogs are managed. Projects live inside Workspaces.


<span style={{display: "flex", gap: "10px", flexDirection: "row", alignItems: "center"}}>
  <img src="https://cdn.peaka.com/badges/partner-api-key-badge.png" />
</span>


## OpenAPI

````yaml delete /organizations/{organizationId}/workspaces/{workspaceId}/projects/{projectId}
openapi: 3.0.1
info:
  title: Peaka Gateway API
  description: Peaka Gateway API Documentation
  version: '1.0'
servers:
  - url: https://partner.peaka.studio/api/v1
    description: Default Server URL (US Zone)
  - url: https://partner.eu.peaka.studio/api/v1
    description: EU Zone
security:
  - bearerAuth: []
paths:
  /organizations/{organizationId}/workspaces/{workspaceId}/projects/{projectId}:
    delete:
      tags:
        - Organization -- Projects
      summary: Delete Project
      description: >
        Deletes the specified Project within a Workspace.


        A Project is a unit of work where queries, data tables, and semantic
        catalogs are managed. Projects live inside Workspaces.
      operationId: deleteProject_1
      parameters:
        - name: organizationId
          in: path
          description: ID of the Organization
          required: true
          schema:
            type: string
          example: d0d3c83f-29ed-4f2e-899d-1bfa00eb3cef
        - name: workspaceId
          in: path
          description: ID of the Workspace
          required: true
          schema:
            type: string
          example: 56d43968-e31d-4010-9b75-018a79a51b17
        - name: projectId
          in: path
          description: ID of the Project
          required: true
          schema:
            type: string
          example: SksnYuxH
      responses:
        '200':
          description: Project deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Use the Authorization header with the value 'Bearer <apiKey>' to
        authenticate. Partner API Keys have full access; Project API Keys are
        limited to their project scope. Learn more:
        https://docs.peaka.com/api-reference/authentication
      scheme: bearer
      bearerFormat: Api Key

````