user

Store Endpoint

Store a new dashboard revision.

Multiple dashboards can be created for any given Dashboard ids only need to be unique per

The data stored can be any free form json. It is splitted into:

  • summary, a lightweight summarized version of the data that is also returned when calling the /list endpoint

  • the content, which holds the bulk of the dashboard description and that can be retrieved by calling the /get endpoint

The total size of the data stored for each dashboard must not exceed a few hundred kilobytes, otherwise the backing stores might present degraded performances or hit quotas.

The revision of the dashboard is an arbitrary string that is used to ensure no concurrent updates are performed. For new dashboards, it should be left empty. For existing endpoints, it is obtained from the response of the /list or /get endpoints.

post/user/dashboard/store

Request body

tenant_idstring required
dashboard_idstring required
revisionstring nullable
contentobject required
summaryobject required

Response

Successful Response

update_timestring required
revisionstring required
dashboard_idstring required

Changes

No recorded changes to this endpoint across all 1 revision of this API.