GET
/
v1
/
portfolios
/
{id}
curl --request GET \
  --url https://carbon-engine.onrender.com/v1/portfolios/{id} \
  --header 'Authorization: Bearer <token>'
{
  "portfolio": {
    "name": "<string>",
    "description": "<string>",
    "projects": [
      "<string>"
    ]
  },
  "projects": [
    {
      "_id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "projectCategory": "<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 ID of the portfolio

Response

200
application/json
Portfolio details along with associated projects
portfolio
object
projects
object[]