> ## 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 timecheck.



## OpenAPI

````yaml preview post /api/timeclock/timechecks.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/timeclock/timechecks.delete:
    post:
      tags:
        - Timeclock
      summary: Delete
      description: Deletes a timecheck.
      operationId: post_app_ui_api_timeclock_timeclockcommand_deletetimecheck
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteTimecheckCommand'
      responses:
        '204':
          description: Timecheck deleted.
components:
  schemas:
    DeleteTimecheckCommand:
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'

````