List Portfolio Property Values

GET /portfolio_property_values

Returns a paginated collection of portfolio property values for a portfolio company profile.

Portfolio property values contain the actual data for custom properties defined for portfolio companies. This endpoint also returns auto-calculated investment properties.

Query parameters

  • portfolio_company_profile_id string(uuid) Required

    ID of the portfolio company profile to filter by

  • page integer

    Page number

    Minimum value is 1. Default value is 1.

Responses

  • 200 application/json

    Successfully retrieved portfolio property values

    Hide response attributes Show response attributes object
    • portfolio_property_values array[object]
      Hide portfolio_property_values attributes Show portfolio_property_values attributes object
      • id string(uuid) Required

        Unique identifier for the portfolio property value

      • value string | number | boolean | null

        The formatted value based on the property type

      • portfolio_property_id string(uuid) Required

        ID of the associated portfolio property

      • portfolio_company_profile_id string(uuid) Required

        ID of the associated portfolio company profile

    • meta object
      Hide meta attributes Show meta attributes object
      • total integer Required

        Total number of items across all pages

      • total_pages integer Required

        Total number of pages

      • page integer Required

        Current page number

  • 400 application/json

    Bad Request - The request is invalid or malformed

    Hide response attribute Show response attribute object
    • errors array[object] Required

      Single error item. Different error types can include different fields.

      Hide errors attributes Show errors attributes object
      • type string

        Machine-readable error type

      • field string

        The related field, if applicable

      • message string

        Human-readable error message

  • 401 application/json

    Unauthorized - Invalid or missing authentication token

    Hide response attribute Show response attribute object
    • errors array[object] Required

      Single error item. Different error types can include different fields.

      Hide errors attributes Show errors attributes object
      • type string

        Machine-readable error type

      • field string

        The related field, if applicable

      • message string

        Human-readable error message

  • 403 application/json

    Forbidden - The authenticated user does not have access to the requested resource

    Hide response attribute Show response attribute object
    • errors array[object] Required

      Single error item. Different error types can include different fields.

      Hide errors attributes Show errors attributes object
      • type string

        Machine-readable error type

      • field string

        The related field, if applicable

      • message string

        Human-readable error message

  • 429 application/json

    Too Many Requests - Rate limit exceeded

    Hide response attribute Show response attribute object
    • errors array[object] Required

      Single error item. Different error types can include different fields.

      Hide errors attributes Show errors attributes object
      • type string

        Machine-readable error type

      • field string

        The related field, if applicable

      • message string

        Human-readable error message

GET /portfolio_property_values
curl \
 --request GET 'https://api.visible.vc/portfolio_property_values?portfolio_company_profile_id=string' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "meta": {
    "page": 1,
    "total": 2,
    "total_pages": 1
  },
  "portfolio_property_values": [
    {
      "id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
      "value": "Sample text value",
      "portfolio_property_id": "cad09a10-73e8-4205-ae67-4e6156f37be8",
      "portfolio_company_profile_id": "b9bd9bb5-9b12-48bb-ae93-cdd2eba9af98"
    },
    {
      "id": "f1d234a8-2bcd-4567-89ef-3c45d6789012",
      "value": "123.45",
      "portfolio_property_id": "e2f345b9-3cde-5678-90ab-4d56e789f123",
      "portfolio_company_profile_id": "b9bd9bb5-9b12-48bb-ae93-cdd2eba9af98"
    }
  ]
}
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"
    }
  ]
}