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

# List current member notifications

> Lists unread, unacknowledged, project-access-filtered notifications for the current org member.



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/notifications
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Integrations and billing
  - name: Notifications and public
paths:
  /api/orgs/{id}/notifications:
    get:
      tags:
        - Notifications and public
      summary: List current member notifications
      description: >-
        Lists unread, unacknowledged, project-access-filtered notifications for
        the current org member.
      operationId: get_api_orgs_id_notifications
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: id identifier
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationListResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - bearerAuth: []
components:
  schemas:
    NotificationListResponse:
      type: object
      additionalProperties: false
      required:
        - notifications
      properties:
        notifications:
          type: array
          items:
            $ref: '#/components/schemas/Notification'
    Notification:
      type: object
      additionalProperties: true
      required:
        - id
        - org_id
        - recipient_member_id
        - event_type
        - resource_type
        - severity
        - metadata
        - created_at
      properties:
        id:
          type: string
        org_id:
          type: string
        recipient_member_id:
          type: string
        recipient_auth_user_id:
          type: string
          nullable: true
        recipient_type:
          type: string
          enum:
            - human
            - agent
            - integration
        actor_member_id:
          type: string
          nullable: true
        actor_id:
          type: string
          nullable: true
        event_type:
          type: string
          examples:
            - mention.created
            - issue.assigned
            - comment.added
            - issue.status_changed
        resource_type:
          type: string
          examples:
            - issue
            - comment
            - project
            - system
        resource_id:
          type: string
          nullable: true
        issue_id:
          type: string
          nullable: true
        project_id:
          type: string
          nullable: true
        comment_id:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        body:
          type: string
          nullable: true
        message:
          type: string
          nullable: true
        target_path:
          type: string
          nullable: true
        severity:
          type: string
          enum:
            - info
            - warning
            - critical
            - action_required
        metadata:
          type: object
          additionalProperties: true
        dedupe_key:
          type: string
          nullable: true
        read_at:
          type: string
          format: date-time
          nullable: true
        archived_at:
          type: string
          format: date-time
          nullable: true
        acknowledged_at:
          type: string
          format: date-time
          nullable: true
        snoozed_until:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
      description: >-
        Current-member notification. Org-scoped notification routes return
        member-recipient notifications filtered by project access.
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      additionalProperties: true
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Authenticated but not allowed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found or not visible
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Unexpected server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````