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

# Get dashboard boot metadata



## OpenAPI

````yaml api-reference/openapi.json get /api/dashboard/boot
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/dashboard/boot:
    get:
      tags:
        - Dashboard
      summary: Get dashboard boot metadata
      operationId: DashboardController_getBootMeta
      parameters: []
      responses:
        '200':
          description: The dashboard details have been successfully retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDashboardBootMetaResponseDto'
components:
  schemas:
    GetDashboardBootMetaResponseDto:
      type: object
      properties:
        abilities:
          description: List of abilities for the current user
          example:
            - subject: all
              action: manage
            - subject: invoices
              action: read
          type: array
          items:
            $ref: '#/components/schemas/RoleAbilityResponseDto'
        features:
          description: List of features and their accessibility
          example:
            - name: warehouses
              isAccessible: true
              defaultAccessible: false
            - name: branches
              isAccessible: false
              defaultAccessible: false
          type: array
          items:
            $ref: '#/components/schemas/DashboardFeatureResponseDto'
        isBigcapitalCloud:
          type: boolean
          description: Whether the app is running on Bigcapital Cloud
          example: true
      required:
        - abilities
        - features
        - isBigcapitalCloud
    RoleAbilityResponseDto:
      type: object
      properties:
        subject:
          type: string
          description: The subject of the ability
          example: all
        action:
          type: string
          description: The action permitted for the subject
          example: manage
      required:
        - subject
        - action
    DashboardFeatureResponseDto:
      type: object
      properties:
        name:
          type: string
          description: The name of the feature
          example: warehouses
        isAccessible:
          type: boolean
          description: Whether the feature is accessible for the tenant
          example: true
        defaultAccessible:
          type: boolean
          description: The default accessibility of the feature
          example: false
      required:
        - name
        - isAccessible
        - defaultAccessible

````