---
title: "Update project"
method: PATCH
path: "/cloud/v1/projects/{project_id}"
tags: ["Projects"]
---

# Update project

`PATCH /cloud/v1/projects/{project_id}`

This endpoint allows partial updates of a project (such as its name or description).
Only the fields explicitly provided in the request body will be updated.

## Path parameters

- `project_id` integer, required — Project ID

## Request body

- UpdateProjectSerializer
  - `description` string — Description of the project.
  - `name` string — Name of the entity, following a specific format.

## Response `200`

OK

- ProjectSerializer
  - `client_id` integer, required — ID associated with the client.
  - `created_at` string, date-time, required — Datetime of creation, which is automatically generated.
  - `deleted_at` string, date-time, nullable, required — Datetime of deletion, which is automatically generated if the project is deleted.
  - `description` string, nullable, required — Description of the project.
  - `id` integer, required — Project ID, which is automatically generated upon creation.
  - `is_default` boolean, required — Indicates if the project is the default one. Each client always has one default project.
  - `name` string, required — Unique project name for a client.
  - `state` string, required — The state of the project.
  - `task_id` string, nullable, required — The UUID of the active task that currently holds a lock on the resource. This lock prevents concurrent modifications to ensure consistency. If `null`, the resource is not locked.

---

[API](https://skmtc.dev/g-core/apis/gcore-openapi.md) · [All operations](https://skmtc.dev/g-core/apis/gcore-openapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/g-core/gcore-openapi/revisions/09e652815095/schema)
