POST
/
beta
/
investment
/
financing-rounds
/
add
/
Add financing rounds
curl --request POST \
  --url https://app.standardmetrics.io/beta/investment/financing-rounds/add/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "financing_rounds": [
    {
      "id": "a2Ne",
      "company_id": "pvYe",
      "name": "Series A",
      "pre_money_valuation": {
        "currency": "USD",
        "value": "20000000"
      },
      "round_size": {
        "currency": "USD",
        "value": "5000000"
      },
      "fully_diluted_shares": "1000000",
      "closing_date": "2020-01-01",
      "co_investors": {
        "is_lead": true,
        "name": "Investor 1"
      },
      "is_crypto": false
    }
  ]
}'
[
  {
    "id": "a2Ne",
    "company_id": "pvYe",
    "name": "Series A",
    "pre_money_valuation": {
      "currency": "USD",
      "value": "20000000"
    },
    "round_size": {
      "currency": "USD",
      "value": "5000000"
    },
    "fully_diluted_shares": "1000000",
    "closing_date": "2020-01-01",
    "co_investors": {
      "is_lead": true,
      "name": "Investor 1"
    },
    "is_crypto": false
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

A list of financing rounds to add.

Response

201 - application/json

Created

The response is of type Financing · object[].