Create a new dashboard (editor+)

POST/api/v1/dashboards

Parameters

This endpoint does not accept parameters.

Responses

201Dashboard created

Request

curl -X POST "https://api.knowledgetree.dev/api/v1/dashboards" \
  -H "Authorization: Bearer $KT_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "title": "Production Overview", "panels": [{ "type": "resource_count", "scope": "prod" }], "layout": "grid" }'

Response

201Dashboard created
Example response not yet documented.