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



## OpenAPI

````yaml preview post /api/balances/work-regimes.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/balances/work-regimes.list:
    post:
      tags:
        - Balances
      summary: List
      description: Retrieves all work regimes.
      operationId: post_app_ui_api_balances_workregimes_workregimesquery_list
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListWorkRegimesQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkRegimesView'
components:
  schemas:
    ListWorkRegimesQuery:
      type: object
    WorkRegimesView:
      required:
        - work_regimes
      properties:
        work_regimes:
          type: array
          items:
            $ref: '#/components/schemas/WorkRegimeView'
      type: object
    WorkRegimeView:
      required:
        - id
        - label
        - formatted_label
        - weekly_worked_hours
        - weekly_worked_days
        - enabled
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        label:
          $ref: '#/components/schemas/TranslatedString'
        formatted_label:
          $ref: '#/components/schemas/TranslatedString'
        weekly_worked_hours:
          $ref: '#/components/schemas/Duration'
        weekly_worked_days:
          type: number
          format: float
        enabled:
          type: boolean
      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
    Duration:
      description: '[ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations)'
      type: string
      format: duration
      example: PT1H30M20S

````