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

# Widget Config Route

> Read-only widget display config for any authenticated user. The full
admin settings are gated behind ``settings:*``, but the Overview widget is
shown to every user — so this exposes only the 7 display fields.



## OpenAPI

````yaml /api/openapi.json get /api/activity/widget-config
openapi: 3.1.0
info:
  title: Halite
  version: 0.1.0
servers: []
security: []
paths:
  /api/activity/widget-config:
    get:
      tags:
        - activity
      summary: Widget Config Route
      description: >-
        Read-only widget display config for any authenticated user. The full

        admin settings are gated behind ``settings:*``, but the Overview widget
        is

        shown to every user — so this exposes only the 7 display fields.
      operationId: widget_config_route_api_activity_widget_config_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WidgetConfigOut'
components:
  schemas:
    WidgetConfigOut:
      properties:
        widget_hide_dispatch:
          type: boolean
          title: Widget Hide Dispatch
        widget_hide_routine:
          type: boolean
          title: Widget Hide Routine
        widget_show_jobs:
          type: boolean
          title: Widget Show Jobs
        widget_show_keys:
          type: boolean
          title: Widget Show Keys
        widget_show_minions:
          type: boolean
          title: Widget Show Minions
        widget_event_count:
          type: integer
          title: Widget Event Count
        widget_heartbeat_minutes:
          type: integer
          title: Widget Heartbeat Minutes
      type: object
      required:
        - widget_hide_dispatch
        - widget_hide_routine
        - widget_show_jobs
        - widget_show_keys
        - widget_show_minions
        - widget_event_count
        - widget_heartbeat_minutes
      title: WidgetConfigOut

````