GET
/
v1
/
projects
/
{id}
curl --request GET \
  --url https://carbon-engine.onrender.com/v1/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "description": "<string>",
  "portfolio": {
    "name": "<string>",
    "description": "<string>"
  },
  "projectCategory": {
    "name": "<string>",
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The project ID

Response

200
application/json
Details of the project
name
string
required

The name of the project

description
string

The description of the project

portfolio
object
projectCategory
object