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

# Delete Project



## OpenAPI

````yaml DELETE /api/v1/task/projects/{projectId}
openapi: 3.1.0
info:
  title: Xenia Team API - Delete Project
  version: 1.0.0
  description: Delete a recurring task project by its ID.
servers:
  - url: https://api.xenia.team
security: []
paths:
  /api/v1/task/projects/{projectId}:
    delete:
      tags:
        - Projects
      summary: Delete Project
      description: Deletes a specific recurring project using its UUID.
      parameters:
        - name: projectId
          in: path
          required: true
          description: UUID of the project to delete
          schema:
            type: string
            format: uuid
        - name: workspace-id
          in: header
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
            example: {}
      responses:
        '200':
          description: Successful deletion of the project
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    description: Empty object on success
                  extra_meta:
                    type: object
                    properties:
                      message:
                        type: string
                        example: Project has been deleted
              example:
                data: {}
                extra_meta:
                  message: Project has been deleted
        '400':
          description: Bad Request - Invalid project ID format.
        '401':
          description: Unauthorized - Missing or invalid authentication.
        '403':
          description: Forbidden - Insufficient permissions to delete project.
        '404':
          description: Not Found - Project does not exist.
        '500':
          description: Internal Server Error.
      security:
        - clientKey: []
          clientSecret: []
components:
  securitySchemes:
    clientKey:
      type: apiKey
      in: header
      name: x-client-key
    clientSecret:
      type: apiKey
      in: header
      name: x-client-secret

````