Qlik Sense Enterprise · Capability

Qlik Sense Enterprise Qlik Sense Repository Service API — Notification

Qlik Sense Enterprise Qlik Sense Repository Service API — Notification. 3 operations. Lead operation: Qlik Sense Enterprise Subscribe to change notifications. Self-contained Naftiko capability covering one Qlik Sense Enterprise business surface.

Run with Naftiko Qlik Sense EnterpriseNotification

What You Can Do

POST
Createnotificationsubscription — Qlik Sense Enterprise Subscribe to change notifications
/v1/notification
DELETE
Removenotificationsubscription — Qlik Sense Enterprise Remove change notification subscription
/v1/notification
GET
Getnotificationchanges — Qlik Sense Enterprise Get changes since last check
/v1/notification/changes

MCP Tools

qlik-sense-enterprise-subscribe-change

Qlik Sense Enterprise Subscribe to change notifications

qlik-sense-enterprise-remove-change

Qlik Sense Enterprise Remove change notification subscription

idempotent
qlik-sense-enterprise-get-changes

Qlik Sense Enterprise Get changes since last check

read-only idempotent

Capability Spec

repository-service-notification.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qlik Sense Enterprise Qlik Sense Repository Service API — Notification
  description: 'Qlik Sense Enterprise Qlik Sense Repository Service API — Notification. 3 operations. Lead operation: Qlik
    Sense Enterprise Subscribe to change notifications. Self-contained Naftiko capability covering one Qlik Sense Enterprise
    business surface.'
  tags:
  - Qlik Sense Enterprise
  - Notification
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QLIK_SENSE_ENTERPRISE_API_KEY: QLIK_SENSE_ENTERPRISE_API_KEY
capability:
  consumes:
  - type: http
    namespace: repository-service-notification
    baseUri: https://{server}:4242/qrs
    description: Qlik Sense Enterprise Qlik Sense Repository Service API — Notification business capability. Self-contained,
      no shared references.
    resources:
    - name: notification
      path: /notification
      operations:
      - name: createnotificationsubscription
        method: POST
        description: Qlik Sense Enterprise Subscribe to change notifications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: removenotificationsubscription
        method: DELETE
        description: Qlik Sense Enterprise Remove change notification subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: handle
          in: query
          type: string
          description: Handle identifying the notification subscription to remove
          required: true
    - name: notification-changes
      path: /notification/changes
      operations:
      - name: getnotificationchanges
        method: GET
        description: Qlik Sense Enterprise Get changes since last check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: since
          in: query
          type: string
          description: Timestamp to retrieve changes since
    authentication:
      type: apikey
      key: X-Qlik-Xrfkey
      value: '{{env.QLIK_SENSE_ENTERPRISE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: repository-service-notification-rest
    port: 8080
    description: REST adapter for Qlik Sense Enterprise Qlik Sense Repository Service API — Notification. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/notification
      name: notification
      description: REST surface for notification.
      operations:
      - method: POST
        name: createnotificationsubscription
        description: Qlik Sense Enterprise Subscribe to change notifications
        call: repository-service-notification.createnotificationsubscription
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removenotificationsubscription
        description: Qlik Sense Enterprise Remove change notification subscription
        call: repository-service-notification.removenotificationsubscription
        with:
          handle: rest.handle
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/notification/changes
      name: notification-changes
      description: REST surface for notification-changes.
      operations:
      - method: GET
        name: getnotificationchanges
        description: Qlik Sense Enterprise Get changes since last check
        call: repository-service-notification.getnotificationchanges
        with:
          since: rest.since
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: repository-service-notification-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qlik Sense Enterprise Qlik Sense Repository Service API — Notification. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: qlik-sense-enterprise-subscribe-change
      description: Qlik Sense Enterprise Subscribe to change notifications
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: repository-service-notification.createnotificationsubscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: qlik-sense-enterprise-remove-change
      description: Qlik Sense Enterprise Remove change notification subscription
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: repository-service-notification.removenotificationsubscription
      with:
        handle: tools.handle
      outputParameters:
      - type: object
        mapping: $.
    - name: qlik-sense-enterprise-get-changes
      description: Qlik Sense Enterprise Get changes since last check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repository-service-notification.getnotificationchanges
      with:
        since: tools.since
      outputParameters:
      - type: object
        mapping: $.