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

# Get all incidents the user has access to



## OpenAPI

````yaml /openapi.json get /dashboard/all-incidents
openapi: 3.0.0
info:
  title: Uptime Monitor API
  description: >-
    API documentation for the Uptime Monitor application. This API allows users
    to create and manage website monitors, perform checks, and view statistics.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.justanotheruptime.com
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: projects
    description: Project management endpoints
  - name: monitors
    description: Monitor management endpoints
  - name: checks
    description: Check-related endpoints
  - name: statistics
    description: Monitor statistics endpoints
paths:
  /dashboard/all-incidents:
    get:
      tags:
        - Dashboard
      summary: Get all incidents the user has access to
      operationId: DashboardController_getAllIncidents
      parameters:
        - name: projectId
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Returns all incidents the user has access to across all projects.
          content:
            application/json:
              schema:
                allOf:
                  - 97a28bad-c07d-4486-b8e2-c5bed83440de
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````