POST
/
project
curl --request POST \
  --url http://localhost:3003/project/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "team_id": "<string>",
  "slug": "<string>"
}'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Body

application/json
name
string
required

Name of the project

team_id
string
required

ID of the team that owns this project

slug
string
required

URL-friendly slug for the project. If not provided, will be generated from name

Response

201
application/json

Project created successfully

data
object