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

# Update

> Updates an existing task.



## OpenAPI

````yaml 26.06.25 post /api/activity/tasks.update
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.update:
    post:
      tags:
        - Activity
      summary: Update
      description: Updates an existing task.
      operationId: post_app_ui_api_activity_configuration_taskcommand_updatetask
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProjectTaskCommand'
      responses:
        '204':
          description: Task updated.
components:
  schemas:
    UpdateProjectTaskCommand:
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        name:
          type: string
        color:
          type: string
        billable:
          type: boolean
        remark_required:
          type: boolean
        tag_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        resource_ids:
          type: array
          items:
            $ref: '#/components/schemas/Snowflake'
        hourly_budget:
          $ref: '#/components/schemas/Duration'
      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

````