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

> Changes project status.



## OpenAPI

````yaml preview post /api/activity/projects.update-status
openapi: 3.1.0
info:
  title: tipee
  version: preview
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.update-status:
    post:
      tags:
        - Activity
      summary: Update status
      description: Changes project status.
      operationId: post_app_ui_api_activity_configuration_projectcommand_updatestatus
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProjectStatusCommand'
      responses:
        '204':
          description: Project status updated.
components:
  schemas:
    UpdateProjectStatusCommand:
      required:
        - id
        - status
      properties:
        id:
          $ref: '#/components/schemas/Snowflake'
        status:
          $ref: '#/components/schemas/ProjectStatus'
      type: object
    Snowflake:
      type: string
      format: snowflake
      example: '872815618512410358'
    ProjectStatus:
      type: string
      example: draft
      enum:
        - draft
        - active
        - locked
        - archived

````