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

# Get populated group payload (policy-group-lens drill-down)

> Returns policy-group metadata plus the four standard card payloads (DASH-019) in canonical order. 404 when the group does not exist on the caller's tenant — this includes groups that exist on OTHER tenants (collapsed to 404 to avoid leaking existence). Samples match RecordedDecision shape.



## OpenAPI

````yaml /api/openapi.json get /v1/dashboard/group/{group_id}
openapi: 3.1.0
info:
  title: MeshQu API
  description: >-
    Governance infrastructure for policy-aware AI decisions. MeshQu does not run
    tools. It governs decisions about them.
  version: 1.9.0
  contact:
    name: MeshQu Support
    email: support@meshqu.com
  license:
    name: Proprietary
servers:
  - url: https://api.meshqu.com
    description: Deployed environment
security:
  - apiKey: []
    tenantId: []
tags:
  - name: Operations
    description: Health, readiness, metrics, and signing keys
  - name: Policies
    description: Policy management
  - name: Policy Groups
    description: Policy group management
  - name: Decisions
    description: Policy evaluation and recording
  - name: Chains
    description: Decision chain verification and sealing
  - name: Receipts
    description: Public receipt and bundle retrieval
  - name: Forms
    description: Attestation forms and public submission
  - name: Alerts
    description: Alert management and webhooks
  - name: Audit
    description: Audit log retrieval and verification
  - name: API Keys
    description: API key administration
  - name: Admin
    description: Tenant and platform administration
  - name: Dashboard
    description: Console dashboard data
  - name: Metrics
    description: Decision and overview metrics
  - name: Fields
    description: Field catalogue
  - name: Settings
    description: Tenant settings
  - name: Rule Creation Logs
    description: Rule authoring telemetry
paths:
  /v1/dashboard/group/{group_id}:
    get:
      tags:
        - Dashboard
      summary: Get populated group payload (policy-group-lens drill-down)
      description: >-
        Returns policy-group metadata plus the four standard card payloads
        (DASH-019) in canonical order. 404 when the group does not exist on the
        caller's tenant — this includes groups that exist on OTHER tenants
        (collapsed to 404 to avoid leaking existence). Samples match
        RecordedDecision shape.
      operationId: getV1DashboardGroupByGroupId
      parameters:
        - schema:
            format: uuid
            type: string
          in: path
          name: group_id
          required: true
          description: Tenant policy_group_id (UUID).
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  group:
                    type: object
                    properties:
                      id:
                        format: uuid
                        type: string
                      name:
                        type: string
                      description:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - id
                      - name
                      - description
                  cards:
                    type: array
                    items:
                      type: object
                      properties:
                        key:
                          anyOf:
                            - type: string
                              enum:
                                - decisions_awaiting_review
                            - type: string
                              enum:
                                - overdue_outcomes
                            - type: string
                              enum:
                                - recent_violations
                            - type: string
                              enum:
                                - ratification_pending
                        label:
                          type: string
                        description:
                          type: string
                        count:
                          minimum: 0
                          type: integer
                        sample:
                          type: array
                          items:
                            description: >-
                              RecordedDecision-shaped sample row (structurally a
                              DecisionRecord superset).
                        severity_breakdown:
                          type: object
                          properties:
                            low:
                              minimum: 0
                              type: integer
                            medium:
                              minimum: 0
                              type: integer
                            high:
                              minimum: 0
                              type: integer
                            critical:
                              minimum: 0
                              type: integer
                          required:
                            - low
                            - medium
                            - high
                            - critical
                        temporal: {}
                        causal_hint: {}
                      required:
                        - key
                        - label
                        - description
                        - count
                        - sample
                required:
                  - group
                  - cards
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        description: Error code
                        type: string
                      message:
                        description: Human-readable message
                        type: string
                      details:
                        description: Additional error details
                    required:
                      - code
                      - message
                  correlation_id:
                    description: Request correlation ID
                    type: string
                required:
                  - error
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: mqu_<token>
      description: >-
        MeshQu API key passed as a bearer token: `Authorization: Bearer mqu_…`.
        Mint one in the console (Settings → API keys).
    tenantId:
      type: apiKey
      name: X-MeshQu-Tenant-Id
      in: header
      description: >-
        Tenant UUID for multi-tenant isolation. Required on all authenticated
        routes — validated before authentication (middleware/tenant.ts), so a
        missing or non-UUID header returns 400 (MISSING_TENANT_ID /
        INVALID_TENANT_ID) before the API key is checked.

````