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

# Get a current-user notification

> Returns one notification for the current user and organization, including its content, read state, delivery context, and relevant account activity.



## OpenAPI

````yaml /openapi.json get /notifications/{id}
openapi: 3.1.1
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    organization settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Feedback
  - name: Leads
  - name: LeadStatusChanges
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: Organizations
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /notifications/{id}:
    get:
      tags:
        - Notifications
      summary: Get a current-user notification
      description: >-
        Returns one notification for the current user and organization,
        including its content, read state, delivery context, and relevant
        account activity.
      operationId: Notifications_GetForCurrentUser
      parameters:
        - name: id
          in: path
          description: The notification ID.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/NotificationResponse'
                description: >-
                  Describes notification data used in Leadping API requests and
                  responses.
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ProblemDetails'
                description: >-
                  Standard problem-details response containing machine-readable
                  and human-readable information about an HTTP API error.
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ProblemDetails'
                description: >-
                  Standard problem-details response containing machine-readable
                  and human-readable information about an HTTP API error.
components:
  schemas:
    NotificationResponse:
      type: object
      properties:
        type:
          allOf:
            - $ref: '#/components/schemas/NotificationType'
          description: The type classification for this notification.
        priority:
          allOf:
            - $ref: '#/components/schemas/NotificationPriority'
          description: Priority for this notification.
        userId:
          type: string
          description: The user ID associated with this notification.
        message:
          type: string
          description: Message for this notification.
        details:
          type:
            - 'null'
            - string
          description: >-
            Optional supporting details displayed beneath the notification
            message.
        readAt:
          type:
            - 'null'
            - string
          description: UTC timestamp for read at on this notification.
          format: date-time
        isRead:
          type: boolean
          description: Whether this notification is read.
        pushEnabled:
          type: boolean
          description: >-
            Whether this notification should also be delivered as a device push
            notification.
        actionUrl:
          type:
            - 'null'
            - string
          description: The URL associated with this notification.
        actionButtonText:
          type:
            - 'null'
            - string
          description: Action button text for this notification.
        relatedEntityId:
          type:
            - 'null'
            - string
          description: The related entity ID associated with this notification.
        relatedEntityType:
          type:
            - 'null'
            - string
          description: The related entity type classification for this notification.
        name:
          type: string
          description: The display name for the entity.
        id:
          type: string
          description: The unique identifier for the entity.
        createdAt:
          type: string
          description: The date and time when the entity was created.
          format: date-time
        modifiedAt:
          type:
            - 'null'
            - string
          description: The date and time when the entity was last modified, if applicable.
          format: date-time
      description: Describes notification data used in Leadping API requests and responses.
    ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
          description: URI reference that identifies the problem type.
        title:
          type:
            - 'null'
            - string
          description: Short, human-readable summary of the problem.
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: HTTP status code returned for the problem.
          format: int32
        detail:
          type:
            - 'null'
            - string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
        instance:
          type:
            - 'null'
            - string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
      description: >-
        Standard problem-details response containing machine-readable and
        human-readable information about an HTTP API error.
    NotificationType:
      enum:
        - General
        - Lead
        - Call
        - Sms
        - Billing
        - System
        - Success
        - Warning
        - Error
        - Info
        - Announcement
        - Activation
      type: string
      description: Defines the supported Notification Type values.
    NotificationPriority:
      enum:
        - Low
        - Medium
        - High
        - Critical
      type: string
      description: Defines the supported Notification Priority values.

````