Creates a portfolio note for a portfolio company profile.
Public API clients must send plaintext or markdown content as a string.
Responses
-
Portfolio note successfully created
-
Bad Request - The request is invalid or malformed
-
Unauthorized - Invalid or missing authentication token
-
Forbidden - The authenticated user does not have access to the requested resource
-
Unprocessable Entity - The request is valid but contains semantic errors
-
Too Many Requests - Rate limit exceeded
POST
/portfolio_notes
curl \
--request POST 'https://api.visible.vc/portfolio_notes' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"portfolio_note":{"name":"Board meeting notes","content":"Line one\n- bullet\n","portfolio_company_profile_id":"ec5252fe-9abc-4096-85e9-1374e70a3182"}}'
Request example
{
"portfolio_note": {
"name": "Board meeting notes",
"content": "Line one\n- bullet\n",
"portfolio_company_profile_id": "ec5252fe-9abc-4096-85e9-1374e70a3182"
}
}
Response examples (201)
{
"portfolio_note": {
"id": "3c5728ed-a09e-4245-bb33-459b67600be3",
"name": "Board meeting notes",
"portfolio_company_profile_id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
"content": null,
"created_at": "2025-02-01T22:08:21.175Z"
}
}
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 (422)
{
"errors": [
{
"type": "attribute_invalid",
"field": "value",
"message": "required"
}
]
}
Response examples (429)
{
"errors": [
{
"type": "rate_limit_exceeded"
}
]
}