---
title: "Create Project"
method: POST
path: "/v1/projects"
tags: ["projects"]
---

# Create Project

`POST /v1/projects`

Create a new project with optional vault associations.

## Request body

- ProjectCreate
  - `workspace_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `vault_ids` string[]
  - `is_personal` boolean

## Response `201`

Successful Response

- ProjectOut
  - `id` string, uuid, required
  - `workspace_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable, required
  - `status` string, required
  - `vault_ids` string[], required
  - `owner_user_id` string, nullable
  - `is_personal` boolean
  - `collaborator_count` integer
  - `my_role` string, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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