PUT
/
api
/
users
/
company_overview_layout
curl --request PUT \
  --url https://app.herondata.io/api/users/company_overview_layout \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "group_name": "<string>",
    "id": "<string>",
    "widgets": [
      {
        "id": "<string>",
        "scorecard_metric_date_range": "latest",
        "scorecard_metric_label": "<string>",
        "type": "scorecard_metric"
      }
    ]
  }
]'

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json · object[]
The new company overview layout
group_name
string
required
id
string
required

A unique id used to reference the group

widgets
object[]
required

Response

204

OK