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

> Retrieves detailed information for a specific team.



## OpenAPI

````yaml 26.06.25 post /api/directory/teams.show
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/directory/teams.show:
    post:
      tags:
        - Directory
      summary: Show
      description: Retrieves detailed information for a specific team.
      operationId: post_app_ui_api_directory_directoryquery_showteam
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShowTeamQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamShowView'
components:
  schemas:
    ShowTeamQuery:
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
      type: object
    TeamShowView:
      required:
        - id
        - name
        - short_name
        - parent
        - children
        - enabled
        - external_id
        - color
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
        short_name:
          type:
            - string
            - 'null'
        parent:
          oneOf:
            - $ref: '#/components/schemas/TeamSummary'
            - type: 'null'
        children:
          type: array
          items:
            $ref: '#/components/schemas/TeamSummary'
        enabled:
          type: boolean
        external_id:
          type:
            - string
            - 'null'
        color:
          type:
            - string
            - 'null'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    TeamSummary:
      required:
        - id
        - name
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
      type: object

````