---
title: "Update project"
method: PUT
path: "/projects/{id}"
tags: ["Projects"]
---

# Update project

`PUT /projects/{id}`

Update an existing project's properties (requires project manager role)

## Path parameters

- `id` string, uuid, required

## Request body

- ProjectUpdateRequest
  - `name` string
  - `key` string
  - `color_code` string
  - `status_id` string, uuid, nullable
  - `category_id` string, uuid, nullable
  - `folder_id` string, uuid, nullable
  - `start_date` string, date, nullable
  - `end_date` string, date, nullable

## Response `200`

Project updated successfully

- object
  - `done` boolean, required — Indicates if the operation was successful
  - `body` object, nullable, required — Response data (type varies by endpoint, null if no data)
    - `id` string, uuid
    - `name` string
    - `key` string — Project key (e.g., "WEB")
    - `color_code` string — Project color in hex format
    - `status_id` string, uuid, nullable
    - `category_id` string, uuid, nullable
    - `folder_id` string, uuid, nullable
    - `start_date` string, date, nullable
    - `end_date` string, date, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `title` string, nullable — Optional response title
  - `message` string, nullable — Optional message (error message or success notification)

## Other responses

- `403` — Insufficient permissions (requires project manager role)

---

[API](https://skmtc.dev/worklenz/apis/worklenz-api.md) · [All operations](https://skmtc.dev/worklenz/apis/worklenz-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/worklenz/worklenz-api/revisions/e44341b9118c/schema)
