Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the project.
Response
200
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
  }
}Get a project by id.
π§ 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 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
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier of the project.
200
Show child attributes
Was this page helpful?