List Portfolio Properties
Returns a paginated collection of portfolio properties for a company.
Portfolio properties define the custom fields that can be used to store data about portfolio companies. This endpoint also returns auto-calculated investment properties.
GET
/portfolio_properties
curl \
--request GET 'https://api.visible.vc/portfolio_properties?company_id=string' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"meta": {
"page": 1,
"total": 3,
"total_pages": 1
},
"portfolio_properties": [
{
"id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
"name": "Industry",
"data_type": "select",
"company_id": "cad09a10-73e8-4205-ae67-4e6156f37be8"
},
{
"id": "f1d234a8-2bcd-4567-89ef-3c45d6789012",
"name": "Employee Count",
"data_type": "number",
"company_id": "cad09a10-73e8-4205-ae67-4e6156f37be8"
},
{
"id": "12345678-9abc-def0-1234-56789abcdef0",
"name": "Total Invested",
"data_type": "number",
"company_id": "cad09a10-73e8-4205-ae67-4e6156f37be8"
}
]
}
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"
}
]
}