---
title: "Create a new project"
method: POST
path: "/projects"
tags: ["Projects"]
---

# Create a new project

`POST /projects`

## Request body

- ProjectInput
  - `name` string, required
  - `status` 'PLANNING' | 'ACTIVE' | 'COMPLETED' | 'ON_HOLD', required
  - `budget` number, required — Monetary value in EUR
  - `startDate` string, date, required
  - `endDate` string, date, required
  - `team` object[], required
    - `id` integer, required
    - `name` string, required
  - `manager` integer, required
  - `description` string, required

## Response `201`

Project created successfully

- Project
  - `id` string, required
  - `name` string, required
  - `status` 'PLANNING' | 'ACTIVE' | 'COMPLETED' | 'ON_HOLD', required
  - `budget` number, required — Monetary value in EUR
  - `startDate` string, date, required
  - `endDate` string, date, required
  - `team` object[], required
    - `id` integer, required
    - `name` string, required
  - `manager` integer, required
  - `description` string, required

## Other responses

- `400` — Invalid input

## Changes

- **2025-01-07** `659ddbe31a58` — 2 breaking, 6 info
  - removed the media type `application/json` for the response with the status `400`
  - removed the required property `teamSize` from the response with the `201` status
  - removed the non-success response with the status `409`
  - removed the non-success response with the status `422`
  - …4 more

[Change history](https://skmtc.dev/ducin-public/apis/itcorpo-api/changes/projects/post.md)

---

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