Skip to main content
GET
/
v1
/
projects
/
{project_id}
Get project
curl --request GET \
  --url https://dovetail.com/api/v1/projects/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

project_id
string
required

Unique identifier of the project.

Response

200

data
object
required