Skip to main content
POST
/
v1
/
projects
Create a new project
curl --request POST \
  --url https://api.example.com/v1/projects \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "data": {
    "name": "<string>",
    "id": "<string>",
    "description": "<string>"
  }
}

Body

application/json
name
string
required
Minimum string length: 1
description
string | null

Response

The newly created project

data
Project · object
required