Metrics

Create a Metric

Create a new metric for a company.

post/metrics

Request body

Example request

{
  "metric": {
    "name": "Revenue",
    "frequency": "monthly",
    "unit": "USD",
    "company_id": "c85cb869-40c0-4b8f-829a-30cdeb673ce0"
  }
}

Response

Metric successfully created

Example response

{
  "metric": {
    "id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
    "name": "Revenue",
    "frequency": "monthly",
    "unit": "USD",
    "portfolio_company_profile_id": "ec5252fe-9abc-4096-85e9-1374e70a3182",
    "company_id": "cad09a10-73e8-4205-ae67-4e6156f37be8"
  }
}

Changes