> ## 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 one or multiple absences, possibly including their entire group of repeating absences.



## OpenAPI

````yaml 26.06.25 post /api/schedule/absences.delete
openapi: 3.1.0
info:
  title: tipee
  version: 26.06.25
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/absences.delete:
    post:
      tags:
        - Schedule
      summary: Delete
      description: >-
        Deletes one or multiple absences, possibly including their entire group
        of repeating absences.
      operationId: post_app_ui_api_schedule_schedulecommand_deleteabsences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteAbsenceCommand'
      responses:
        '200':
          description: >-
            Absence(s) deleted. When options.allow_partial is true, some
            absences might not be deleted due to lock dates or permissions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteAbsenceResult'
components:
  schemas:
    DeleteAbsenceCommand:
      required:
        - ids
        - options
      properties:
        ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        options:
          $ref: '#/components/schemas/DeleteOptions'
      type: object
    DeleteAbsenceResult:
      description: Result of deleting absence(s).
      required:
        - deleted_count
        - deleted
        - failed_count
        - failed
      properties:
        deleted_count:
          type: integer
        deleted:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        failed_count:
          type: integer
        failed:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    DeleteOptions:
      required:
        - group_action
      properties:
        group_action:
          $ref: '#/components/schemas/GroupAction'
          description: If group action is 'single', allow_partial should not be provided
        allow_partial:
          description: >-
            Allows partial processing of the request for periods when the
            schedule is not locked and not overlapping
          type: boolean
      type: object
    GroupAction:
      type: string
      example: single
      enum:
        - single
        - future
        - all

````