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

# Delete

> Deletes a project.



## OpenAPI

````yaml preview post /api/activity/projects.delete
openapi: 3.1.0
info:
  title: tipee
  version: preview
servers: []
security:
  - basicAuth: []
tags:
  - name: Activity
    description: Activity
  - name: Balances
    description: Balances
  - name: Directory
    description: Directory
  - name: Schedule
    description: Schedule
  - name: Timeclock
    description: Timeclock
paths:
  /api/activity/projects.delete:
    post:
      tags:
        - Activity
      summary: Delete
      description: Deletes a project.
      operationId: post_app_ui_api_activity_configuration_projectcommand_deleteproject
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteProjectCommand'
      responses:
        '204':
          description: Project deleted.
components:
  schemas:
    DeleteProjectCommand:
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'

````