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

# Get notification ticket

> Get notification ticket.

The dashboard calls this for every websocket ticket event whose ticket
isn't already loaded — it is a READ, gated on TICKET_FIND like GET
/tickets. It previously required TICKET_EXPORT (copied from the export
endpoints around it), which silently broke realtime inserts for any
custom role that can view the inbox but not export.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /tickets/notification/{shareToken}
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /tickets/notification/{shareToken}:
    get:
      tags:
        - Ticket
      summary: Get notification ticket
      description: |-
        Get notification ticket.

        The dashboard calls this for every websocket ticket event whose ticket
        isn't already loaded — it is a READ, gated on TICKET_FIND like GET
        /tickets. It previously required TICKET_EXPORT (copied from the export
        endpoints around it), which silently broke realtime inserts for any
        custom role that can view the inbox but not export.
      operationId: GetNotificationTicket
      parameters:
        - in: header
          name: project
          required: true
          schema:
            type: string
        - in: path
          name: shareToken
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````