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

# Assign team

> Assigns a team to a project.



## OpenAPI

````yaml 26.06.25 post /api/activity/projects.assign-team
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/projects.assign-team:
    post:
      tags:
        - Activity
      summary: Assign team
      description: Assigns a team to a project.
      operationId: post_app_ui_api_activity_configuration_projectcommand_assignteam
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssignProjectTeamCommand'
      responses:
        '204':
          description: Project team assigned.
components:
  schemas:
    AssignProjectTeamCommand:
      required:
        - project_id
        - team_id
        - access_rights
      properties:
        project_id:
          $ref: '#/components/schemas/Snowflake'
        team_id:
          $ref: '#/components/schemas/Snowflake'
        access_rights:
          type: array
          items:
            $ref: '#/components/schemas/ProjectAccessRights'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    ProjectAccessRights:
      type: string
      example: manage-project
      enum:
        - manage-project
        - validate-hours
        - contribute-hours
        - consult-hours

````