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

# List

> Retrieves all absence types (or the ones corresponding to the provided ids) with details about their statuses.



## OpenAPI

````yaml 26.06.25 post /api/schedule/absence-types.list
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/absence-types.list:
    post:
      tags:
        - Schedule
      summary: List
      description: >-
        Retrieves all absence types (or the ones corresponding to the provided
        ids) with details about their statuses.
      operationId: post_app_ui_api_schedule_schedulequery_listabsencetypes
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListAbsenceTypesQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AbsenceTypeView'
components:
  schemas:
    ListAbsenceTypesQuery:
      properties:
        ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        requestable:
          type: boolean
        enabled:
          type: boolean
      type: object
    AbsenceTypeView:
      required:
        - id
        - name
        - requestable
        - enabled
        - confidential
        - machine_name
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        name:
          $ref: '#/components/schemas/TranslatedString'
        requestable:
          type: boolean
        enabled:
          type: boolean
        confidential:
          type: boolean
        machine_name:
          type: string
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    TranslatedString:
      properties:
        fr:
          type: string
        en:
          type: string
        de:
          type: string
      type: object
      example:
        en: Hello
        fr: Bonjour
        de: Guten Tag

````