Portfolio Property Values
Upsert a Portfolio Property Value
Create or update a single portfolio property value for a portfolio company profile.
Pass the portfolio property and portfolio company profile identifiers along with the value, and the API will either create a new record or update the existing one if it already exists for that (portfolio_property_id, portfolio_company_profile_id) pair.
For properties with data_type of select or multiselect, you must send option IDs instead of option labels:
- For select properties, use portfolio_property_option_id with the UUID of a single option.
- For multiselect properties, use portfolio_property_option_ids with an array of option UUIDs. For all other data types (string, text, url, number, date, rich_text) use the generic value field.
put/portfolio_property_values
Request body
Response
Portfolio property value successfully updated
Example response
{
"portfolio_property_value": {
"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"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.