List Portfolio Notes
Returns a paginated collection of portfolio notes for a portfolio company profile.
Query parameters
-
ID of the portfolio company profile to filter by
-
Page number
Minimum value is
1
. Default value is1
.
GET
/portfolio_notes
curl \
--request GET 'https://api.visible.vc/portfolio_notes?portfolio_company_profile_id=string' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"meta": {
"page": 1,
"total": 1,
"total_pages": 1
},
"portfolio_notes": [
{
"name": "A note",
"created_at": "2025-02-01T22:08:21.175Z",
"plaintext_content": "This is a note",
"portfolio_company_profile_id": "ec5252fe-9abc-4096-85e9-1374e70a3182"
}
]
}
Response examples (400)
{
"errors": [
{
"type": "parameter_invalid",
"field": "filter",
"message": "must be an object"
}
]
}
Response examples (401)
{
"errors": [
{
"type": "unauthorized"
}
]
}
Response examples (403)
{
"errors": [
{
"type": "forbidden"
}
]
}
Response examples (429)
{
"errors": [
{
"type": "rate_limit_exceeded"
}
]
}