---
title: "Update a project"
method: PATCH
path: "/projects/{project_id}"
tags: ["Project"]
---

# Update a project

`PATCH /projects/{project_id}`

Update an existing project's fields (project owner only).

## Path parameters

- `project_id` integer, required

## Query parameters

- `cookie_name` string, nullable

## Request body

- ProjectIn
  - `name` string, required — Display name of the project.
  - `description_show_in_chat` boolean — Whether the project description is shown to users in chat.
  - `description` string, nullable — Optional longer description of the project's purpose.

## Response `200`

Successful Response

- Project
  - `id` integer, nullable — Primary key for the project.
  - `tenant_id` integer, required — ID of the tenant that owns the project.
  - `created_at` string, date-time — Timestamp when the project was created.
  - `creator_user_id` integer, required — ID of the user who created the project.
  - `name` string, required — Name of the project.
  - `description` string, nullable, required — Optional description of the project.
  - `description_show_in_chat` boolean — Whether the project description is shown in the chat UI.

## Other responses

- `401` — Missing or invalid authentication.
- `403` — Current user is not an owner of the project.
- `404` — No project exists with the given id.
- `422` — Validation Error

---

[API](https://skmtc.net/neulandai/apis/neuland-ai-hub-api.md) · [All operations](https://skmtc.net/neulandai/apis/neuland-ai-hub-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/neulandai/neuland-ai-hub-api/versions/b53e89b98c2b/schema)
