> ## 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 task within a project.



## OpenAPI

````yaml 26.06.25 post /api/activity/tasks.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/tasks.create:
    post:
      tags:
        - Activity
      summary: Create
      description: Creates a new task within a project.
      operationId: post_app_ui_api_activity_configuration_taskcommand_createtask
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectTaskCommand'
      responses:
        '201':
          description: Task created.
          content:
            application/json:
              schema:
                required:
                  - id
                properties:
                  id:
                    $ref: '#/components/schemas/Snowflake'
                type: object
components:
  schemas:
    CreateProjectTaskCommand:
      required:
        - project_id
        - name
        - color
        - billable
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        project_id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
          maxLength: 255
          minLength: 1
        color:
          type: string
        billable:
          type: boolean
        remark_required:
          type: boolean
          default: false
        hourly_budget:
          oneOf:
            - $ref: '#/components/schemas/Duration'
            - type: 'null'
        tag_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
          default: []
        resource_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
          default: []
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    Duration:
      description: '[ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations)'
      type: string
      format: duration
      example: PT1H30M20S

````