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

# Get Notification

> Get a single notification event by ID.



## OpenAPI

````yaml https://platform.unstructuredapp.io/openapi.json get /api/v1/notifications/{notification_id}
openapi: 3.1.0
info:
  title: Platform API
  version: 3.1.0
servers:
  - url: https://platform.unstructuredapp.io/
    description: Unstructured Platform API
    x-speakeasy-server-id: platform-api
security: []
paths:
  /api/v1/notifications/{notification_id}:
    get:
      tags:
        - notifications
      summary: Get Notification
      description: Get a single notification event by ID.
      operationId: get_notification_api_v1_notifications__notification_id__get
      parameters:
        - name: notification_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Notification Id
        - name: unstructured-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Unstructured-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NotificationResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Notification event UUID
        event_type:
          type: string
          title: Event Type
          description: Event type (e.g., job.completed)
        workflow_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Workflow Id
          description: Workflow scope (null = account-level)
        payload:
          additionalProperties: true
          type: object
          title: Payload
          description: Event payload data
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Event creation timestamp
        is_read:
          type: boolean
          title: Is Read
          description: Read status for current user
          default: false
      type: object
      required:
        - id
        - event_type
        - payload
        - created_at
      title: NotificationResponse
      description: Single notification event.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````