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

# Subscribe to notifications server-sent events



## OpenAPI

````yaml api-reference/openapi.json get /api/common/notification/stream
openapi: 3.0.1
info:
  title: OpenAPI definition
  version: v0
servers:
  - url: https://localhost:8080
    description: Generated server url
security: []
paths:
  /api/common/notification/stream:
    get:
      tags:
        - Notification
      summary: Subscribe to notifications server-sent events
      operationId: streamEvents
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SseEmitter'
components:
  schemas:
    SseEmitter:
      type: object
      properties:
        timeout:
          type: integer
          format: int64

````