POST
/
beta
/
investment
/
share-classes
/
add
/
Add share classes
curl --request POST \
  --url https://app.standardmetrics.io/beta/investment/share-classes/add/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "share_classes": [
    {
      "id": "a2Ne",
      "company_id": "pvYe",
      "financing_id": "a2Ne",
      "purchase_type": "primary",
      "type": "common",
      "name": "Series A-2",
      "price_per_share": {
        "value": "1000000",
        "converted_value": "1000000",
        "currency": "USD",
        "preferred_currency": "USD",
        "fx_rate": "1.0",
        "is_custom_rate": false
      },
      "include_in_fair_value": true
    }
  ]
}'
[
  {
    "id": "a2Ne",
    "company_id": "pvYe",
    "financing_id": "a2Ne",
    "purchase_type": "primary",
    "type": "common",
    "name": "Series A-2",
    "price_per_share": {
      "value": "1000000",
      "converted_value": "1000000",
      "currency": "USD",
      "preferred_currency": "USD",
      "fx_rate": "1.0",
      "is_custom_rate": false
    },
    "include_in_fair_value": true
  }
]

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 share classes to add to a company's cap table.

Response

201 - application/json

Created

The response is of type ShareClass · object[].