GET
/
custom-columns
/
Get custom column values
curl --request GET \
  --url https://api.standardmetrics.io/v1/custom-columns/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": 123,
      "value": "<string>",
      "company": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Your valid bearer token. All Auth tokens persist for all requests. Make sure to replace Client Credential Basic tokens with Bearer tokens after retrieving your bearer token. Go to the API Reference/Setup, User Guides/Initial Setup, or API Reference/Get API Access Token page to get your token.

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

company_slug
string

The slug that uniquely identifies the company whose metrics' to request. You can find the slug for a company by going to that company's portfolio page, and then the last portion of the URL will be the unique slug for said company. For example: in the url: app.standardmetrics.io/venture/fund-slug/portfolio/example-slug/, "example-slug" would the the slug. You can also make a request to the /companies endpoint to get a list of all your firm's companies and their slugs. <b>Either the company_slug or company_id parameter must be passed to this endpoint.</b>

company_id
string

The id for the company whose metrics' to request. You can get a company's id by making a request to the /companies endpoint. <b>Either the company_slug or company_id parameter must be passed to this endpoint.</b>

Response

200 - application/json

The response is of type object.