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

# Create Project

`POST /api/v1/projects`

## Request body

- CreateProjectRequest
  - `org_id` string, uuid, required
  - `name` string, required
  - `status` 'bidding' | 'in-progress' | 'won' | 'lost' — Bid lifecycle states. Hyphenated 'in-progress' matches the enum on the DB side and the existing frontend ProjectStatus type. Do not rename to underscore — it would break the frontend bridge and the DB enum at the same time.

## Response `201`

Successful Response

- Project — A single project — top-level container for drawings, conditions, measurements.
  - `id` string, uuid, required
  - `name` string, required
  - `status` 'bidding' | 'in-progress' | 'won' | 'lost', required — Bid lifecycle states. Hyphenated 'in-progress' matches the enum on the DB side and the existing frontend ProjectStatus type. Do not rename to underscore — it would break the frontend bridge and the DB enum at the same time.
  - `can_write` boolean, required
  - `can_manage_sharing` boolean, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `4XX` — Client Error
- `5XX` — Server Error

---

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