Skip to main content
POST
/
v1
/
projects
Create project
curl --request POST \
  --url https://dovetail.com/api/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "My First Project"
}'
{
  "data": {
    "id": "<string>",
    "author": {
      "id": "<string>",
      "name": "<string>"
    },
    "title": "<string>",
    "type": "project",
    "created_at": "<string>",
    "deleted": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Body

title
string

The project's title.

Maximum length: 200
Example:

"My First Project"

Response

201

data
object
required