PUT
/
api
/
users
/
current
/
settings
curl --request PUT \
  --url https://app.herondata.io/api/users/current/settings \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "balance_sheet_categories": {
    "current_assets": {},
    "current_liabilities": {},
    "equity": {},
    "fixed_assets": {},
    "non_current_liabilities": {},
    "other_assets": {}
  },
  "financials_metrics": {},
  "industry_naics_enabled": true,
  "low_balance_days_threshold": 123,
  "pnl_categories": {
    "cogs": {},
    "income": {},
    "operating_expenses": {},
    "other_expenses": {},
    "other_income": {}
  },
  "required_revenue_per_month": 123,
  "restricted_industries": [
    {
      "description": "<string>",
      "name": "<string>"
    }
  ],
  "use_new_company_layout": true,
  "use_new_end_user_summary_table": true,
  "use_new_end_user_table": true
}'

Authorizations

x-api-key
string
header
required

Body

application/json
The new settings

The body is of type object.

Response

204

OK