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

> List all projects.



## OpenAPI

````yaml preview post /api/activity/projects.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/activity/projects.list:
    post:
      tags:
        - Activity
      summary: List
      description: List all projects.
      operationId: post_app_ui_api_activity_configuration_projectquery_listprojects
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListProjectsQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProjectListView'
components:
  schemas:
    ListProjectsQuery:
      properties:
        with_task_ids:
          type: boolean
          default: true
        filters:
          type: array
          items:
            $ref: '#/components/schemas/ListProjectsQueryFilter'
        orders:
          type: array
          items:
            discriminator:
              propertyName: key
            oneOf:
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: project.name
                    enum:
                      - project.name
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: project.date_range
                    enum:
                      - project.date_range
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: project.client_name
                    enum:
                      - project.client_name
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
      type: object
    ProjectListView:
      required:
        - id
        - resource_id
        - name
        - description
        - external_id
        - status
        - date_range
        - task_ids
        - hourly_budget
        - hourly_budget_mode
        - created_at
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        resource_id:
          oneOf:
            - $ref: '#/components/schemas/Snowflake'
            - type: 'null'
        name:
          type: string
        description:
          type:
            - string
            - 'null'
        external_id:
          type:
            - string
            - 'null'
        status:
          $ref: '#/components/schemas/ProjectStatus'
        date_range:
          oneOf:
            - $ref: '#/components/schemas/LocalDateInterval'
            - type: 'null'
        task_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        hourly_budget:
          $ref: '#/components/schemas/Duration'
        hourly_budget_mode:
          $ref: '#/components/schemas/ProjectHourlyBudgetMode'
        created_at:
          $ref: '#/components/schemas/Instant'
      type: object
    ListProjectsQueryFilter:
      discriminator:
        propertyName: key
      oneOf:
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.ids
              enum:
                - project.ids
            value:
              type: array
              items:
                $ref: '#/components/schemas/Snowflake'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.external_id
              enum:
                - project.external_id
            value:
              type: array
              items:
                type: string
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.search
              enum:
                - project.search
            value:
              type: string
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.status
              enum:
                - project.status
            value:
              type: array
              items:
                $ref: '#/components/schemas/ProjectStatus'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.access_rights
              enum:
                - project.access_rights
            value:
              $ref: '#/components/schemas/ProjectAccessRightsValue'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.date_range
              enum:
                - project.date_range
            value:
              $ref: '#/components/schemas/LocalDateInterval'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.created_at
              enum:
                - project.created_at
            value:
              $ref: '#/components/schemas/LocalDateTimeInterval'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.with_activities
              enum:
                - project.with_activities
            value:
              $ref: '#/components/schemas/LocalDateInterval'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: project.resource_ids
              enum:
                - project.resource_ids
            value:
              type: array
              items:
                $ref: '#/components/schemas/Snowflake'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: or
              enum:
                - or
            value:
              type: array
              items:
                $ref: '#/components/schemas/ListProjectsQueryFilter'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: and
              enum:
                - and
            value:
              type: array
              items:
                $ref: '#/components/schemas/ListProjectsQueryFilter'
          type: object
    QueryOrderDirection:
      type: string
      example: asc
      enum:
        - asc
        - desc
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    ProjectStatus:
      type: string
      example: draft
      enum:
        - draft
        - active
        - locked
        - archived
    LocalDateInterval:
      type: string
      format: local-date-interval
      example: 2019-11-11/2019-12-12
    Duration:
      description: '[ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations)'
      type: string
      format: duration
      example: PT1H30M20S
    ProjectHourlyBudgetMode:
      type: string
      example: none
      enum:
        - none
        - project
        - task
    Instant:
      type: string
      format: zoned-date-time
      example: '2025-10-30T10:40:22.01367Z'
    ProjectAccessRightsValue:
      required:
        - resource_id
        - rights
      properties:
        resource_id:
          $ref: '#/components/schemas/Snowflake'
        rights:
          type: array
          items:
            $ref: '#/components/schemas/ProjectAccessRights'
      type: object
    LocalDateTimeInterval:
      type: string
      format: local-date-time-interval
      example: 2019-11-11T12:34:56/2019-12-12T23:59:59
    ProjectAccessRights:
      type: string
      example: manage-project
      enum:
        - manage-project
        - validate-hours
        - contribute-hours
        - consult-hours

````