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

# Create

> Creates a new project. The project status is set to `draft` by default.



## OpenAPI

````yaml 26.06.25 post /api/activity/projects.create
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.create:
    post:
      tags:
        - Activity
      summary: Create
      description: Creates a new project. The project status is set to `draft` by default.
      operationId: post_app_ui_api_activity_configuration_projectcommand_createproject
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectCommand'
      responses:
        '201':
          description: Project created.
          content:
            application/json:
              schema:
                required:
                  - id
                properties:
                  id:
                    $ref: '#/components/schemas/Snowflake'
                type: object
components:
  schemas:
    CreateProjectCommand:
      required:
        - name
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
          maxLength: 255
          minLength: 1
        external_id:
          type:
            - string
            - 'null'
          maxLength: 255
          minLength: 1
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'

````