> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chronosphere.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ReadDashboard



## OpenAPI

````yaml openapi/api_v1_config_openapi3_DOCUMENTATION_ONLY.json GET /api/v1/config/dashboards/{slug}
openapi: 3.0.3
info:
  description: >

    The Config API provides standard HTTP/JSON REST endpoints for creating,
    reading,

    updating, deleting, and listing configurable Chronosphere resources.


    Use this link to download the raw Swagger specification:

    <a href="/api/v1/config/swagger.json">/api/v1/config/swagger.json</a>
  title: Config V1 API
  version: v1
servers:
  - url: https://{tenant}.chronosphere.io
    variables:
      tenant:
        default: tenant
        description: tenant ID assigned by the service provider
security:
  - ApiKeyAuth: []
tags:
  - name: ConfigV1
paths:
  /api/v1/config/dashboards/{slug}:
    get:
      tags:
        - Dashboard
      operationId: ReadDashboard
      parameters:
        - in: path
          name: slug
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/configv1ReadDashboardResponse'
          description: A successful response.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: Cannot read the Dashboard because the slug does not exist.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: An unexpected error response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/genericError'
          description: An undefined error response.
components:
  schemas:
    configv1ReadDashboardResponse:
      properties:
        dashboard:
          $ref: '#/components/schemas/configv1Dashboard'
      type: object
    apiError:
      properties:
        message:
          description: An error message describing what went wrong.
          type: string
      type: object
    genericError:
      additionalProperties: true
      type: object
    configv1Dashboard:
      properties:
        collection:
          allOf:
            - $ref: '#/components/schemas/configv1CollectionReference'
          description: >-
            Collection that the dashboard belongs to. Required if
            `collection_slug` is not

            set.
        collection_slug:
          description: Optional. Slug of the collection the dashboard belongs to.
          type: string
        created_at:
          description: >-
            Timestamp of when the Dashboard was created. Cannot be set by
            clients.
          format: date-time
          readOnly: true
          type: string
        dashboard_json:
          description: Raw JSON representation that defines the structure of the dashboard.
          type: string
        labels:
          additionalProperties:
            type: string
          description: Optional. Defines tags that add metadata about the dashboard.
          type: object
        name:
          description: >-
            The name of the Dashboard. You can modify this value after the
            Dashboard is created.
          type: string
        slug:
          description: >-
            The unique identifier of the Dashboard. If a `slug` isn't provided,
            one is generated based on the `name` field. You can't modify this
            field after the Dashboard is created.
          type: string
        updated_at:
          description: >-
            Timestamp of when the Dashboard was last updated. Cannot be set by
            clients.
          format: date-time
          readOnly: true
          type: string
      required:
        - name
      type: object
    configv1CollectionReference:
      properties:
        slug:
          type: string
        type:
          $ref: '#/components/schemas/configv1CollectionReferenceType'
      type: object
    configv1CollectionReferenceType:
      enum:
        - SIMPLE
        - SERVICE
      title: Type values must match entitiespb.Collection.CollectionType.
      type: string
  securitySchemes:
    ApiKeyAuth:
      description: Chronosphere API token
      in: header
      name: API-Token
      type: apiKey

````