> ## 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 schedule template.

<Warning>This route is in preview: it may change without notice until it becomes part of a stable version.</Warning>


## OpenAPI

````yaml preview post /api/schedule/schedule-templates.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/schedule/schedule-templates.delete:
    post:
      tags:
        - Schedule
      summary: Delete
      description: Deletes a schedule template.
      operationId: post_app_ui_api_schedule_scheduletemplatecommand_deletescheduletemplate
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteScheduleTemplateCommand'
      responses:
        '204':
          description: Schedule template deleted.
components:
  schemas:
    DeleteScheduleTemplateCommand:
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'

````