GET
/
v1
/
portfolios
Retrieve all portfolios
curl --request GET \
  --url https://carbon-engine.onrender.com/v1/portfolios \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "description": "<string>",
    "projects": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Response

200
application/json

List of all portfolios

The response is of type object[].