---
title: "Create project"
method: POST
path: "/cloud/v1/projects"
tags: ["Projects"]
---

# Create project

`POST /cloud/v1/projects`

Create a new project for a client.
Project management must be enabled to perform this operation.

## Request body

- CreateProjectSerializer
  - `description` string, nullable — Description of the project.
  - `name` string, required — Unique project name for a client. Each client always has one "default" project.

## Response `201`

Created

- 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.net/g-core/apis/gcore-openapi.md) · [All operations](https://skmtc.net/g-core/apis/gcore-openapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/g-core/gcore-openapi/revisions/09e652815095/schema)
