Skip to content

Create a project

POST
/api/v1/projects
curl --request POST \
--url https://example.com/api/v1/projects \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "description": "example", "creator": "example" }'
Media type application/json
object
name
required
string
>= 1 characters
description
string
creator
string
Example generated
{
"name": "example",
"description": "example",
"creator": "example"
}

Success

Media type application/json
object
_id
required
string
name
required
string
description
string
creator
string
createdAt
required
string | null format: date-time
updatedAt
string | null format: date-time
deletedAt
string | null format: date-time
Example generated
{
"_id": "example",
"name": "example",
"description": "example",
"creator": "example",
"createdAt": "2026-04-15T12:00:00Z",
"updatedAt": "2026-04-15T12:00:00Z",
"deletedAt": "2026-04-15T12:00:00Z"
}

Invalid input