DocsAPIProceeds

Add proceed

Records a proceed against a portfolio company. Amounts are in the fund's currency. Divestments should also carry divestment_type and shares_exited, which is what reduces the fund's holding.

POST
/proceeds
Body

Example: 10

Example: 2024-05-20

Example: divestment

Example: Trade sale

Example: 2500000

Example: 95238

Example: 1000000

Example: false

Example: Partial exit alongside the Series C

Request Body

application/jsonOptional
portfolio_company_idRequiredstring

Portfolio company the proceed was received from (required)

Pattern: "^\\d+$"
dateRequiredstring

Transaction date

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

What kind of proceed this is

Value in: "interest" | "dividends" | "divestment" | "divestment_payout"
divestment_typestring

How the holding was exited. Required for divestments.

Value in: "Trade sale" | "Secondary sale" | "IPO" | "Liquidation" | "Bankruptcy"
proceeds_receivednumber

Amount received, in the fund's currency

shares_exitedinteger

Shares sold in the transaction. Required for divestments.

fund_divestmentnumber

Acquisition cost divested, in the fund's currency. Optional – left unset it is derived from the shares exited.

is_valuation_basisboolean

Whether the share price implied by this divestment becomes the company's valuation basis

commentsstring

Internal comments

fieldsobject

Custom fields

Credentials

Bearer
curl -X POST "https://api.fundra.com/v1/proceeds" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "portfolio_company_id": "10",
    "date": "2024-05-20",
    "proceed_type": "divestment",
    "divestment_type": "Trade sale",
    "proceeds_received": 2500000,
    "shares_exited": 95238,
    "fund_divestment": 1000000,
    "is_valuation_basis": false,
    "comments": "Partial exit alongside the Series C",
    "fields": {
      "property1": null,
      "property2": null
    }
  }'

Proceed created

{
  "data": {
    "id": "3",
    "uuid": "V1StGXR8",
    "portfolio_company_id": "10",
    "date": "2024-05-20",
    "proceed_type": "divestment",
    "divestment_type": "Trade sale",
    "proceeds_received": 2500000,
    "shares_exited": 95238,
    "fund_divestment": 1000000,
    "is_valuation_basis": false,
    "comments": "Partial exit alongside the Series C",
    "fields": {
      "property1": null,
      "property2": null
    },
    "created_at": "2024-05-21T10:30:00Z",
    "updated_at": "2024-05-22T09:00:00Z"
  }
}