DocsAPIValuations

Add valuation

Records a valuation against a portfolio company. share_price and enterprise_value valuations describe the company itself, so they are stored against the underlying company and apply to every fund holding it – the response reports company_id instead of portfolio_company_id in that case. investment_value stays with the portfolio company.

POST
/valuations
Body

Example: 10

Example: 2024-03-31

Example: share_price

Example: Price of recent investment

Example: EUR

Example: 12.5

Example: 0.2

Example: false

Example: false

Example: false

Example: Marked to the Series B price

Request Body

application/jsonOptional
portfolio_company_idRequiredstring

Portfolio company the valuation is recorded against (required). For share_price and enterprise_value it is resolved to the underlying company, so the valuation applies to every fund holding it.

Pattern: "^\\d+$"
dateRequiredstring

Date the valuation takes effect from

Pattern: "^\\d{4}-\\d{2}-\\d{2}$"
valuation_basestring

What the valuation figure expresses. share_price and enterprise_value apply to the company across all funds; investment_value applies only to this fund's holding.

Value in: "share_price" | "enterprise_value" | "investment_value"
valuation_methodstring

How the valuation was arrived at

currencystring

ISO 4217 currency of the valuation

Minimum length: 3Maximum length: 3
valuationnumber

The valuation figure

valuation_discountnumber

Discount applied to the valuation, as a fraction (0.2 = 20%)

Minimum: 0Maximum: 1
apply_waterfallboolean

Whether to run the valuation through the liquidation waterfall

unlink_valuation_baseboolean

For investment_value, whether to stop tracking the company's enterprise value

is_inactiveboolean

Whether the holding is marked inactive from this date

descriptionstring

Internal comments

fieldsobject

Custom fields

Credentials

Bearer
curl -X POST "https://api.fundra.com/v1/valuations" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "portfolio_company_id": "10",
    "date": "2024-03-31",
    "valuation_base": "share_price",
    "valuation_method": "Price of recent investment",
    "currency": "EUR",
    "valuation": 12.5,
    "valuation_discount": 0.2,
    "apply_waterfall": false,
    "unlink_valuation_base": false,
    "is_inactive": false,
    "description": "Marked to the Series B price",
    "fields": {
      "property1": null,
      "property2": null
    }
  }'

Valuation created

{
  "data": {
    "id": "7",
    "uuid": "V1StGXR8",
    "portfolio_company_id": "10",
    "company_id": "42",
    "date": "2024-03-31",
    "valuation_base": "share_price",
    "valuation_method": "Price of recent investment",
    "currency": "EUR",
    "valuation": 12.5,
    "valuation_discount": 0.2,
    "apply_waterfall": false,
    "unlink_valuation_base": false,
    "is_inactive": false,
    "description": "Marked to the Series B price",
    "fields": {
      "property1": null,
      "property2": null
    },
    "created_at": "2024-04-02T10:30:00Z",
    "updated_at": "2024-04-05T09:00:00Z"
  }
}