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

# Show

> Returns the full details of a single project, including its members.



## OpenAPI

````yaml preview post /api/activity/projects.show
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.show:
    post:
      tags:
        - Activity
      summary: Show
      description: Returns the full details of a single project, including its members.
      operationId: post_app_ui_api_activity_configuration_projectquery_showproject
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShowProjectQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectView'
components:
  schemas:
    ShowProjectQuery:
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
      type: object
    ProjectView:
      required:
        - id
        - resource_id
        - name
        - description
        - external_id
        - status
        - date_range
        - members
        - 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'
        members:
          $ref: '#/components/schemas/MemberView'
        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
    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
    MemberView:
      required:
        - resources
        - teams
      properties:
        resources:
          type: array
          items:
            $ref: '#/components/schemas/AccessView'
        teams:
          type: array
          items:
            $ref: '#/components/schemas/AccessView'
      type: object
    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'
    AccessView:
      required:
        - id
        - access_rights
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        access_rights:
          type: array
          items:
            $ref: '#/components/schemas/ProjectAccessRights'
      type: object
    ProjectAccessRights:
      type: string
      example: manage-project
      enum:
        - manage-project
        - validate-hours
        - contribute-hours
        - consult-hours

````