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

# List Workspace Dashboards

> Returns the list of dashboard IDs, names, and ownership metadata for all dashboards visible to the authenticated user in a workspace. Authenticate with a tenant JWT (from the register-tenant endpoint) or an API key.



## OpenAPI

````yaml get /v1/api/dashboard/list-workspace-dashboards
openapi: 3.1.0
info:
  title: Upsolve API
  version: 1.4.1
servers:
  - url: https://api.upsolve.ai
security: []
tags: []
paths:
  /v1/api/dashboard/list-workspace-dashboards:
    get:
      summary: List dashboards in a workspace
      description: >-
        Returns the list of dashboard IDs, names, and ownership metadata for all
        dashboards visible to the authenticated user in a workspace.
        Authenticate with a tenant JWT (from the register-tenant endpoint) or an
        API key.
      operationId: GetV1ApiDashboardListWorkspaceDashboards
      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: workspaceId
          in: query
          required: true
          description: The ID of the workspace to list dashboards for
          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: The ID of the workspace to list dashboards for
      responses:
        '200':
          description: GET /v1/api/dashboard/list-workspace-dashboards Positive response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    const: success
                  data:
                    type: object
                    properties:
                      dashboards:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Dashboard ID
                            name:
                              type: string
                              description: Dashboard display name
                            tenantId:
                              type:
                                - string
                                - 'null'
                            ownerProjectUserId:
                              type:
                                - string
                                - 'null'
                            createdAt:
                              type: string
                              description: ISO 8601 creation timestamp
                            updatedAt:
                              type:
                                - string
                                - 'null'
                          required:
                            - id
                            - name
                            - tenantId
                            - ownerProjectUserId
                            - createdAt
                            - updatedAt
                          additionalProperties: false
                    required:
                      - dashboards
                    additionalProperties: false
                required:
                  - status
                  - data
                additionalProperties: false
        '400':
          description: GET /v1/api/dashboard/list-workspace-dashboards 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

````