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

> Returns day tasks matching the given filters (tasks, date range, resources).



## OpenAPI

````yaml 26.06.25 post /api/activity/day-tasks.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/activity/day-tasks.list:
    post:
      tags:
        - Activity
      summary: List
      description: >-
        Returns day tasks matching the given filters (tasks, date range,
        resources).
      operationId: post_app_ui_api_activity_workflow_workflowquery_daytasklist
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListDayTasksQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DayTaskView'
components:
  schemas:
    ListDayTasksQuery:
      required:
        - task_ids
        - date_range
        - resource_ids
        - is_own
      properties:
        task_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        date_range:
          $ref: '#/components/schemas/LocalDateInterval'
        resource_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        is_own:
          type: boolean
      type: object
    DayTaskView:
      required:
        - resource_id
        - task_id
        - date
        - actor_id
        - status
        - at
        - remark
        - validator_remark
        - editable
        - enabled_transitions
      properties:
        resource_id:
          $ref: '#/components/schemas/Snowflake'
        task_id:
          $ref: '#/components/schemas/Snowflake'
        date:
          $ref: '#/components/schemas/LocalDate'
        actor_id:
          $ref: '#/components/schemas/Snowflake'
        status:
          $ref: '#/components/schemas/DayTaskStatus'
        at:
          $ref: '#/components/schemas/Instant'
        remark:
          type:
            - string
            - 'null'
        validator_remark:
          type:
            - string
            - 'null'
        editable:
          type: boolean
        enabled_transitions:
          type: array
          items:
            $ref: '#/components/schemas/DayTaskTransition'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    LocalDateInterval:
      type: string
      format: local-date-interval
      example: 2019-11-11/2019-12-12
    LocalDate:
      type: string
      format: local-date
      example: '2019-11-11'
    DayTaskStatus:
      type: string
      example: editing
      enum:
        - editing
        - submitted
        - validated
        - rejected
    Instant:
      type: string
      format: zoned-date-time
      example: '2025-10-30T10:40:22.01367Z'
    DayTaskTransition:
      type: string
      example: submit
      enum:
        - submit
        - submit-for-contributor
        - cancel-submission
        - submit-correction
        - validate
        - cancel-validation
        - reject
        - cancel-rejection

````