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

> Permanently delete a project. Only projects in **DRAFT** status can be deleted — published or closed projects cannot be removed.

# Delete a project



## OpenAPI

````yaml delete /v1/projects/{projectId}
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/projects/{projectId}:
    delete:
      tags:
        - projects
      summary: Delete a project
      description: Only projects in the status of draft can be deleted.
      operationId: ProjectsController_delete
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
        - name: projectId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````