---
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 — Status of the ongoing project's workflow
  - `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 — Status of the ongoing project's workflow
  - `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 project input request body @see {@link ProjectInput}
- `500` — An internal server error occurred.
- `503` — The service is temporarily unavailable. Maybe there is maintenance?

## Changes

- **2025-01-09** `29074eeb2bb5` — 3 info
  - added the media type `application/json` for the response with the status `400`
  - added the non-success response with the status `500`
  - added the non-success response with the status `503`
- **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/29074eeb2bb5/schema)
