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

# Notifications Handled

> Mark a set of notifications as handled, so they can be cleaned up on other clients that have received the notification

NsApiSlow threshold: 5000 ms.



## OpenAPI

````yaml /openapi/agent/openapi-v3-PocketAgent.json post /api/v1/Agents/Pocket/NotificationsHandled
openapi: 3.0.0
info:
  version: v1-Agents
  title: SuperOffice Agent API v1
  description: SuperOffice Agent API - PocketAgent
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/Agents/Pocket/NotificationsHandled:
    post:
      tags:
        - Pocket_Agent
      summary: Notifications Handled
      description: >-
        Mark a set of notifications as handled, so they can be cleaned up on
        other clients that have received the notification


        NsApiSlow threshold: 5000 ms.
      operationId: v1PocketAgent_NotificationsHandled
      parameters:
        - name: $select
          in: query
          description: >-
            Optional comma separated list of properties to include in the
            result. Other fields are then nulled out to reduce payload size:
            "Name,department,category". Default = show all fields.
          required: false
          schema:
            type: string
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
          text/json:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
          application/xml:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
          text/xml:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
          application/x-www-form-urlencoded:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
          application/json-patch+json:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
          application/merge-patch+json:
            schema:
              $ref: >-
                #/components/schemas/SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest
        description: NotificationEvents
        required: true
      responses:
        '204':
          description: No Content
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components:
  schemas:
    SuperOffice.WebApi.v1.Carriers.PocketCarriers.NotificationsHandledRequest:
      description: >-
        NotificationsHandled: Mark a set of notifications as handled, so they
        can be cleaned up on other clients that have received the notification
      type: object
      properties:
        NotificationEvents:
          type: array
          items:
            $ref: '#/components/schemas/SuperOffice.CRM.Services.NotificationEvent'
    SuperOffice.CRM.Services.NotificationEvent:
      description: "Carrier for a notification event for a given notification type and entity id\r\n<para />\r\nCarrier object for NotificationEvent.\r\nServices for the NotificationEvent Carrier is available from the <see cref=\"T:SuperOffice.CRM.Services.IPocketAgent\">Pocket Agent</see>."
      type: object
      properties:
        Type:
          description: Type of notification event
          enum:
            - Unknown
            - NewTicket
            - AppointmentInvitation
            - AppointmentMoved
            - AppointmentCancelled
            - NewTicketMessage
            - TicketActivated
            - TicketEscalated
            - QuoteApprovalRequest
            - QuoteApprovalApproved
            - QuoteApprovalDenied
            - AppointmentDeclined
          type: string
        Id:
          format: int32
          description: Id of entity this notification event is about
          type: integer

````

## Related topics

- [Notification Handled](/en/api/reference/restful/agent/pocket_agent/notification-handled.md)
- [SuperOffice.WebApi.Data.Pocket NotificationHandledRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Pocket_NotificationHandledRequest.md)
- [SuperOffice.WebApi.Data.Pocket NotificationsHandledRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Pocket_NotificationsHandledRequest.md)
- [SuperOffice.WebApi.Agents.PocketAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.PocketAgent.md)
- [SuperOffice.WebApi.Agents.IPocketAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IPocketAgent.md)
- [NSPocketNotificationMessage](/en/automation/crmscript/reference/CRMScript.NetServer.NSPocketNotificationMessage.md)
