---
title: "Update a project"
method: PATCH
path: "/projects/{id}"
tags: ["Projects"]
deprecated: true
---

# Update a project

`PATCH /projects/{id}`

> **Deprecated.**

Deprecated: use `PATCH /org/projects/{id}` instead. This route will be removed on 2026-11-24.

Update a project's name or status.

## Path parameters

- `id` string, required

## Request body

- UpdateProjectRequest
  - `name` string — New project name (1-255 Unicode code points)
  - `status` 'active' | 'archived' — New project status

## Response `200`

Project updated

- Project
  - `id` string, required — Unique project identifier
  - `name` string, required — Project name
  - `status` 'active' | 'archived', required — Project status
  - `created_at` string, date-time, required — When the project was created
  - `updated_at` string, date-time, required — When the project was last updated

## Other responses

- `400` — Bad Request – invalid input
- `401` — Unauthorized – missing or invalid authorization token
- `403` — Forbidden – insufficient permissions or plan
- `404` — Resource not found
- `409` — Conflict – resource already exists
- `500` — Internal Server Error

## Changes

- **2026-07-22** `d084fcf879f6` — 1 breaking, 1 warning
  - the `name` request property's minLength was increased from `0` to `1`
  - the `name` request property's maxLength was set to `255`
- **2026-07-09** `7fc0b38ea270` — 1 info
  - added the non-success response with the status `403`
- **2026-05-24** `e9d0086afbc5` — 1 info
  - endpoint deprecated

[Change history](https://skmtc.dev/kernel/apis/kernel-api/changes/projects/:id/patch.md)

---

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