Skip to main content
Monitoring & Collection/Grafana Dashboards
POSTGrafanaSince 1.0SynchronousAuth Required

CreateDashboard

Create a new monitoring dashboard with a panel layout for a tenant

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

Body Fields

  • tenantIdStringRequired

    UUID of the tenant creating the dashboard

    Example: tenant-001-xyz

  • userIdStringRequired

    UUID of the user creating the dashboard

    Example: user-001-abc

  • titleStringRequired

    Display title for the new dashboard

    Example: VM Performance Overview

  • categoryStringRequired

    Category for the new dashboard

    Example: compute

  • layoutListRequired

    Layout for this resource

    Example: (nested array)

    • panelIdString

      Unique identifier of the panel within the dashboard

      Example: panel-cpu-001

    • xInteger

      Horizontal grid position of the panel

      Example: 20

    • yInteger

      Vertical grid position of the panel

      Example: 20

    • wInteger

      Width of the panel in grid units

      Example: 12

    • hInteger

      Height of the panel in grid units

      Example: 8

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the dashboard

    Example: dash-001-abc

  • tenantIdString

    UUID of the tenant owning this dashboard

    Example: tenant-001-xyz

  • titleString

    Display title of the dashboard

    Example: VM Performance Overview

  • categoryString

    Category the dashboard belongs to

    Example: compute

  • layoutList

    Layout for this resource

    Example: (nested array)

    • panelIdString

      Unique identifier of the panel within the dashboard

      Example: panel-cpu-001

    • xInteger

      Horizontal grid position of the panel

      Example: 20

    • yInteger

      Vertical grid position of the panel

      Example: 20

    • wInteger

      Width of the panel in grid units

      Example: 12

    • hInteger

      Height of the panel in grid units

      Example: 8

  • createdByString

    User ID of the dashboard creator

    Example: user-001-abc

  • createdAtString

    Created at

    Example: 2026-01-15T08:00:00Z

  • updatedAtString

    Updated at

    Example: 2026-01-15T08:00:00Z

  • deletedAtString

    Deleted at

    Example: 2026-01-15T08:00:00Z

  • versionInteger

    Current version number of this dashboard

    Example: 3

Endpoint

POST/api/v1/monitoring/dashboards

/api/v1/monitoring/dashboards

Operation ID

CreateDashboard

Permalink

Request Example

curl -X POST '{host}/api/v1/monitoring/dashboards' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"tenantId":"tenant-001-xyz","userId":"user-001-abc","title":"VM Performance Overview","category":"compute","layout":"(nested array)"}'

Response Example

200
{
  "id": "dash-001-abc",
  "tenantId": "tenant-001-xyz",
  "title": "VM Performance Overview",
  "category": "compute",
  "layout": [
    {}
  ],
  "createdBy": "user-001-abc",
  "createdAt": "example",
  "updatedAt": "example"
}

Change History

This API has no change history records yet.

View all change history