dotCMS Notifications API

User notifications and alerts management

Operations 5

PUT /api/v1/notification/delete Delete 7 #
DELETE /api/v1/notification/id/{id} Delete 8 #
GET /api/v1/notification/getNewNotificationsCount Get new notifications count #
GET /api/v1/notification/getNotifications/{params} Get notifications #
PUT /api/v1/notification/markAsRead Mark as read #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dotcms-notifications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dotcms-notifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: dotCMS REST Notifications API
  version: '3'
  description: User notifications and alerts management
servers:
- url: /
  description: dotCMS Server
tags:
- name: Notifications
  description: User notifications and alerts management
paths:
  /api/v1/notification/delete:
    put:
      tags:
      - Notifications
      operationId: delete_7
      requestBody:
        content:
          '*/*':
            schema:
              $ref: '#/components/schemas/DeleteForm'
      responses:
        default:
          description: default response
          content:
            application/json: {}
      summary: Delete 7
      x-summary-source: derived
  /api/v1/notification/id/{id}:
    delete:
      tags:
      - Notifications
      operationId: delete_8
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        default:
          description: default response
          content:
            application/json: {}
      summary: Delete 8
      x-summary-source: derived
  /api/v1/notification/getNewNotificationsCount:
    get:
      tags:
      - Notifications
      operationId: getNewNotificationsCount
      parameters:
      - name: params
        in: path
        required: true
        schema:
          type: string
      responses:
        default:
          description: default response
          content:
            application/json: {}
      summary: Get new notifications count
      x-summary-source: derived
  /api/v1/notification/getNotifications/{params}:
    get:
      tags:
      - Notifications
      operationId: getNotifications
      parameters:
      - name: params
        in: path
        required: true
        schema:
          pattern: .*
          type: string
      - name: Range
        in: header
        schema:
          type: string
      responses:
        default:
          description: default response
          content:
            application/json: {}
      summary: Get notifications
      x-summary-source: derived
  /api/v1/notification/markAsRead:
    put:
      tags:
      - Notifications
      operationId: markAsRead
      responses:
        default:
          description: default response
          content:
            application/json: {}
      summary: Mark as read
      x-summary-source: derived
components:
  schemas:
    DeleteForm:
      required:
      - items
      type: object
      properties:
        items:
          type: array
          items:
            type: string