> ## Documentation Index
> Fetch the complete documentation index at: https://formbricks.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a projectTeam

> Creates a project team in the database.



## OpenAPI

````yaml /api-v2-reference/openapi.yml post /organizations/{organizationId}/project-teams
openapi: 3.1.0
info:
  title: Formbricks API
  description: Manage Formbricks resources programmatically.
  version: 2.0.0
servers:
  - url: https://app.formbricks.com/api/v2
    description: Formbricks Cloud
security:
  - apiKeyAuth: []
tags:
  - name: Health
    description: Operations for checking critical application dependencies health status.
  - name: Roles
    description: Operations for managing roles.
  - name: Me
    description: Operations for managing your API key.
  - name: Management API - Responses
    description: Operations for managing responses.
  - name: Management API - Contacts
    description: Operations for managing contacts.
  - name: Management API - Contact Attributes
    description: Operations for managing contact attributes.
  - name: Management API - Contact Attribute Keys
    description: Operations for managing contact attribute keys.
  - name: Management API - Surveys
    description: Operations for managing surveys.
  - name: Management API - Surveys - Contact Links
    description: Operations for generating personalized survey links for contacts.
  - name: Management API - Webhooks
    description: Operations for managing webhooks.
  - name: Organizations API - Teams
    description: Operations for managing teams.
  - name: Organizations API - Project Teams
    description: Operations for managing project teams.
  - name: Organizations API - Users
    description: Operations for managing users.
paths:
  /organizations/{organizationId}/project-teams:
    post:
      tags:
        - Organizations API - Project Teams
      summary: Create a projectTeam
      description: Creates a project team in the database.
      operationId: createProjectTeam
      parameters:
        - in: path
          name: organizationId
          description: The ID of the organization
          schema:
            $ref: '#/components/schemas/organizationId'
          required: true
      requestBody:
        required: true
        description: The project team to create
        content:
          application/json:
            schema:
              type: object
              properties:
                teamId:
                  type: string
                  description: The ID of the team
                projectId:
                  type: string
                  description: The ID of the project
                permission:
                  type: string
                  enum:
                    - read
                    - readWrite
                    - manage
                  description: Level of access granted to the project
              required:
                - teamId
                - projectId
                - permission
      responses:
        '201':
          description: Project team created successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  createdAt:
                    type: string
                    description: The date and time the project tem was created
                    example: '2021-01-01T00:00:00.000Z'
                  updatedAt:
                    type: string
                    description: The date and time the project team was last updated
                    example: '2021-01-01T00:00:00.000Z'
                  projectId:
                    type: string
                    description: The ID of the project
                  teamId:
                    type: string
                    description: The ID of the team
                  permission:
                    type: string
                    enum:
                      - read
                      - readWrite
                      - manage
                    description: Level of access granted to the project
components:
  schemas:
    organizationId:
      type: string
      description: The ID of the organization
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Use your Formbricks x-api-key to authenticate.

````