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

# Look Up Dashboard

> Returns the application a dashboard belongs to, and its v2 ID. Accepts a migrated v1 dashboard ID as well, so an integration that only stored v1 IDs can build the /share/application/{applicationId}?dashboardId= iframe URL. Authenticate with an Upsolve API key or a project-user token (from /v1/api/projects/user-token, or /v1/api/tenant/register-tenant after migration).



## OpenAPI

````yaml get /v2/api/dashboards/{dashboardId}
openapi: 3.1.0
info:
  title: Upsolve API
  version: 1.4.2
servers:
  - url: https://api.upsolve.ai
security: []
tags: []
paths:
  /v2/api/dashboards/{dashboardId}:
    get:
      summary: Look up a dashboard
      description: >-
        Returns the application a dashboard belongs to, and its v2 ID. Accepts a
        migrated v1 dashboard ID as well, so an integration that only stored v1
        IDs can build the /share/application/{applicationId}?dashboardId= iframe
        URL. Authenticate with an Upsolve API key or a project-user token (from
        /v1/api/projects/user-token, or /v1/api/tenant/register-tenant after
        migration).
      operationId: GetV2ApiDashboardsDashboardId
      parameters:
        - name: apiKey
          in: query
          required: false
          description: >-
            Upsolve API key, generated under Account → Developer settings in the
            Upsolve Hub. Keys are user-scoped: pass organizationId alongside the
            key to select which org to act on.
          schema:
            description: >-
              Upsolve API key, generated under Account → Developer settings in
              the Upsolve Hub. Keys are user-scoped: pass organizationId
              alongside the key to select which org to act on.
            type: string
            minLength: 1
        - name: organizationId
          in: query
          required: false
          description: >-
            The ID of the organization. Required when using Supabase JWT
            authentication.
          schema:
            type: string
            description: >-
              The ID of the organization. Required when using Supabase JWT
              authentication.
        - name: connectionId
          in: query
          required: false
          description: The ID of the connection a guest has access to
          schema:
            type: string
            description: The ID of the connection a guest has access to
        - name: dashboardId
          in: path
          required: true
          description: >-
            A v2 dashboard ID, or the ID of a v1 dashboard that has been
            migrated.
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$
            description: >-
              A v2 dashboard ID, or the ID of a v1 dashboard that has been
              migrated.
      responses:
        '200':
          description: GET /v2/api/dashboards/:dashboardId Positive response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    const: success
                  data:
                    type: object
                    properties:
                      applicationId:
                        type: string
                        description: Application the dashboard belongs to
                      dashboardId:
                        type: string
                        description: >-
                          The v2 dashboard ID (equal to the input unless a v1 ID
                          was given)
                      name:
                        type: string
                        description: Dashboard display name
                      kind:
                        type: string
                        enum:
                          - template
                          - dashboard
                        description: >-
                          `template` is a dashboard shared with every user of
                          the application (created with an API key, or by an
                          admin in the Hub). `dashboard` belongs to one user's
                          space — their own, or their customized copy of a
                          template.
                      legacyDashboardId:
                        type:
                          - string
                          - 'null'
                    required:
                      - applicationId
                      - dashboardId
                      - name
                      - kind
                      - legacyDashboardId
                    additionalProperties: false
                required:
                  - status
                  - data
                additionalProperties: false
        '400':
          description: GET /v2/api/dashboards/:dashboardId Negative response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    const: error
                  error:
                    type: object
                    properties:
                      message:
                        type: string
                      code:
                        type: string
                      details:
                        type: object
                        propertyNames:
                          type: string
                        additionalProperties: {}
                    required:
                      - message
                    additionalProperties: false
                required:
                  - status
                  - error
                additionalProperties: false
      security:
        - APIKEY_2: []
components:
  securitySchemes:
    APIKEY_2:
      type: apiKey
      in: header
      name: authorization

````