Portfolio Notes

List Portfolio Notes

Returns a paginated collection of portfolio notes for a portfolio company profile.

get/portfolio_notes

Query parameters

portfolio_company_profile_idstring uuid required

ID of the portfolio company profile to filter by

pageinteger

Page number

Response

Successfully retrieved portfolio notes

Example response

{
  "portfolio_notes": [
    {
      "id": "3c5728ed-a09e-4245-bb33-459b67600be3",
      "name": "A note",
      "portfolio_company_profile_id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
      "content": "This is a note",
      "created_at": "2025-02-01T22:08:21.175Z"
    }
  ],
  "meta": {
    "total": 2,
    "total_pages": 1,
    "page": 1
  }
}

Changes