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

> Returns a paginated, detailed list of activities with selectable fields. The `select` field is required to specify which columns to include.



## OpenAPI

````yaml preview post /api/activity/activities.list-details
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/activities.list-details:
    post:
      tags:
        - Activity
      summary: List details
      description: >-
        Returns a paginated, detailed list of activities with selectable fields.
        The `select` field is required to specify which columns to include.
      operationId: post_app_ui_api_activity_entry_activityquery_listdetailedactivities
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListDetailedActivitiesQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivityDetailedView'
components:
  schemas:
    ListDetailedActivitiesQuery:
      required:
        - select
      properties:
        filters:
          type: array
          items:
            $ref: '#/components/schemas/ListDetailedActivitiesQueryFilter'
        orders:
          type: array
          items:
            discriminator:
              propertyName: key
            oneOf:
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.id
                    enum:
                      - activity.id
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.date
                    enum:
                      - activity.date
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.billable
                    enum:
                      - activity.billable
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.duration
                    enum:
                      - activity.duration
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.time_range
                    enum:
                      - activity.time_range
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.remark
                    enum:
                      - activity.remark
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.day_task_status
                    enum:
                      - activity.day_task_status
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.project_name
                    enum:
                      - activity.project_name
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.task_name
                    enum:
                      - activity.task_name
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.projects_resources
                    enum:
                      - activity.projects_resources
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
              - required:
                  - key
                properties:
                  key:
                    type: string
                    example: activity.resources
                    enum:
                      - activity.resources
                  direction:
                    $ref: '#/components/schemas/QueryOrderDirection'
                type: object
        pagination:
          $ref: '#/components/schemas/Pagination'
        select:
          properties:
            fields:
              type: array
              items:
                $ref: '#/components/schemas/ActivityDetailedFields'
          type: object
      type: object
    ActivityDetailedView:
      required:
        - next_token
        - data
      properties:
        next_token:
          type:
            - string
            - 'null'
        data:
          type: array
          items:
            $ref: '#/components/schemas/ActivityDetailedDataView'
      type: object
    ListDetailedActivitiesQueryFilter:
      discriminator:
        propertyName: key
      oneOf:
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.date_range
              enum:
                - activity.date_range
            value:
              $ref: '#/components/schemas/LocalDateInterval'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.tags_ids
              enum:
                - activity.tags_ids
            value:
              $ref: '#/components/schemas/TagsFilterValue'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.projects_ids
              enum:
                - activity.projects_ids
            value:
              type: array
              items:
                $ref: '#/components/schemas/Snowflake'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.project_name
              enum:
                - activity.project_name
            value:
              type: string
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.tasks_ids
              enum:
                - activity.tasks_ids
            value:
              type: array
              items:
                $ref: '#/components/schemas/Snowflake'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.task_name
              enum:
                - activity.task_name
            value:
              type: string
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.billable
              enum:
                - activity.billable
            value:
              type: boolean
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.projects_resources
              enum:
                - activity.projects_resources
            value:
              type: array
              items:
                oneOf:
                  - $ref: '#/components/schemas/Snowflake'
                  - type: 'null'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.day_task_status
              enum:
                - activity.day_task_status
            value:
              type: array
              items:
                $ref: '#/components/schemas/DayTaskStatus'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.resources
              enum:
                - activity.resources
            value:
              type: array
              items:
                $ref: '#/components/schemas/Snowflake'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.has_remark
              enum:
                - activity.has_remark
            value:
              type: boolean
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: activity.has_budget
              enum:
                - activity.has_budget
            value:
              type: boolean
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: or
              enum:
                - or
            value:
              type: array
              items:
                $ref: '#/components/schemas/ListDetailedActivitiesQueryFilter'
          type: object
        - required:
            - key
            - value
          properties:
            key:
              type: string
              example: and
              enum:
                - and
            value:
              type: array
              items:
                $ref: '#/components/schemas/ListDetailedActivitiesQueryFilter'
          type: object
    QueryOrderDirection:
      type: string
      example: asc
      enum:
        - asc
        - desc
    Pagination:
      required:
        - limit
        - next_token
      properties:
        limit:
          type:
            - integer
            - 'null'
        next_token:
          type:
            - string
            - 'null'
      type: object
    ActivityDetailedFields:
      type: string
      example: activity.date
      enum:
        - activity.date
        - activity.billable
        - activity.duration
        - activity.time_range
        - activity.resources
        - activity.remark
        - activity.id
        - activity.task_name
        - activity.project_name
        - activity.tags_ids
        - activity.projects_resources
        - activity.day_task_status
    ActivityDetailedDataView:
      required:
        - id
        - project_name
        - task
        - company
        - date
        - billable
        - duration
        - time_range
        - resource
        - remark
        - status
        - tags
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        project_name:
          type: string
        task:
          $ref: '#/components/schemas/TaskSummaryView'
        company:
          oneOf:
            - $ref: '#/components/schemas/ResourceSummaryView'
            - type: 'null'
        date:
          $ref: '#/components/schemas/LocalDate'
        billable:
          type: boolean
        duration:
          oneOf:
            - $ref: '#/components/schemas/Duration'
            - type: 'null'
        time_range:
          $ref: '#/components/schemas/LocalDateTimeInterval'
        resource:
          $ref: '#/components/schemas/ResourceSummaryView'
        remark:
          type:
            - string
            - 'null'
        status:
          $ref: '#/components/schemas/DayTaskStatus'
        tags:
          type: array
          items:
            $ref: '#/components/schemas/TagSummaryView'
      type: object
    LocalDateInterval:
      type: string
      format: local-date-interval
      example: 2019-11-11/2019-12-12
    TagsFilterValue:
      required:
        - tags
        - operator
      properties:
        tags:
          type: array
          items:
            oneOf:
              - $ref: '#/components/schemas/Snowflake'
              - type: 'null'
        operator:
          $ref: '#/components/schemas/LogicalOperator'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    DayTaskStatus:
      type: string
      example: editing
      enum:
        - editing
        - submitted
        - validated
        - rejected
    TaskSummaryView:
      required:
        - id
        - project_id
        - name
        - color
        - billable
        - remark_required
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        project_id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
        color:
          type: string
        billable:
          type: boolean
        remark_required:
          type: boolean
      type: object
    ResourceSummaryView:
      required:
        - id
        - kind_id
        - label
        - short_label
        - sort_label
        - gender
        - picture
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        kind_id:
          $ref: '#/components/schemas/Snowflake'
        label:
          type: string
        short_label:
          type: string
        sort_label:
          type: string
        gender:
          $ref: '#/components/schemas/GrammaticalGender'
        picture:
          $ref: '#/components/schemas/ResourcePictureView'
      type: object
    LocalDate:
      type: string
      format: local-date
      example: '2019-11-11'
    Duration:
      description: '[ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations)'
      type: string
      format: duration
      example: PT1H30M20S
    LocalDateTimeInterval:
      type: string
      format: local-date-time-interval
      example: 2019-11-11T12:34:56/2019-12-12T23:59:59
    TagSummaryView:
      required:
        - id
        - name
        - enabled
        - icon
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
        enabled:
          type: boolean
          default: false
        icon:
          type: string
          default: tag
      type: object
    LogicalOperator:
      type: string
      example: or
      enum:
        - or
        - and
    GrammaticalGender:
      type: string
      example: m
      enum:
        - m
        - f
        - 'n'
    ResourcePictureView:
      required:
        - shape
        - initial
        - url
      properties:
        shape:
          $ref: '#/components/schemas/PictureShape'
        initial:
          type: string
        url:
          type:
            - string
            - 'null'
      type: object
    PictureShape:
      type: string
      example: round
      enum:
        - round
        - rounded-square
        - square

````