> ## 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.

# ReadClassicDashboard



## OpenAPI

````yaml openapi/api_v1_config_openapi3_DOCUMENTATION_ONLY.json GET /api/v1/config/classic-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/classic-dashboards/{slug}:
    get:
      tags:
        - ClassicDashboard
      operationId: ReadClassicDashboard
      parameters:
        - in: path
          name: slug
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/configv1ReadClassicDashboardResponse'
          description: A successful response.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: Cannot read the GrafanaDashboard 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:
    configv1ReadClassicDashboardResponse:
      properties:
        classic_dashboard:
          $ref: '#/components/schemas/configv1GrafanaDashboard'
      type: object
    apiError:
      properties:
        message:
          description: An error message describing what went wrong.
          type: string
      type: object
    genericError:
      additionalProperties: true
      type: object
    configv1GrafanaDashboard:
      properties:
        bucket_slug:
          description: >-
            Slug of the bucket the dashboard belongs to. Required if
            collection_slug

            is not set.
          type: string
        collection:
          allOf:
            - $ref: '#/components/schemas/configv1CollectionReference'
          description: |-
            Collection that the monitor belongs to. Required if bucket_slug and
            collection_slug are not set.
        collection_slug:
          description: >-
            Slug of the collection the dashboard belongs to. Required if
            bucket_slug

            is not set.
          type: string
        created_at:
          description: >-
            Timestamp of when the GrafanaDashboard was created. Cannot be set by
            clients.
          format: date-time
          readOnly: true
          type: string
        dashboard_json:
          description: Required raw JSON of the Grafana dashboard.
          type: string
        name:
          description: >-
            The name of the GrafanaDashboard. You can modify this value after
            the GrafanaDashboard is created.
          type: string
        slug:
          description: >-
            The unique identifier of the GrafanaDashboard. If a `slug` isn't
            provided, one is generated based on the `name` field. You can't
            modify this field after the GrafanaDashboard is created.
          type: string
        updated_at:
          description: >-
            Timestamp of when the GrafanaDashboard 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

````