> ## 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 kinds of possible resources. Only 'employee' is available at the moment.



## OpenAPI

````yaml preview post /api/directory/kinds.list
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/directory/kinds.list:
    post:
      tags:
        - Directory
      summary: List
      description: >-
        Retrieves all kinds of possible resources. Only 'employee' is available
        at the moment.
      operationId: post_app_ui_api_directory_directoryquery_kindslist
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListKindsQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KindSummaryView'
components:
  schemas:
    ListKindsQuery:
      type: object
    KindSummaryView:
      required:
        - id
        - machine_name
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        machine_name:
          type: string
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'

````