Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Body
The project's title.
Maximum length: 
200Example:
"My First Project"
Response
201
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
  }
}Create a project in your Dovetail workspace.
Returns the project.
π§ Permissions
Please check you have the relevant permissions required to access this resource. This may include specific permissions on the object itself or its parent, or having the correct user role if youβre making updates.
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
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
The project's title.
200"My First Project"
201
Show child attributes
Was this page helpful?