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

# Delete a Notification Group

> Permanently deletes a notification group. This action cannot be undone.



## OpenAPI

````yaml /api/en/notifications.yaml delete /notifications/{groupId}
openapi: 3.0.3
info:
  title: Altostrat Notifications API
  version: 1.0.0
  description: >-
    The Altostrat Notifications API is the microservice responsible for
    creating, configuring, and managing alert routing and delivery channels.


    It acts as the central hub for all platform-generated alerts, ensuring that
    critical events from SD-WAN, network automation, and AI agents are delivered
    to the right people through the right channels at the right time.


    This API allows you to programmatically manage:

    - **Notification Groups:** The core resource that links specific alert
    topics, target sites, and recipients to a notification schedule and delivery
    channel.

    - **Topics:** Pre-defined categories of alerts (e.g., 'WAN Failover',
    'Heartbeat', 'SLA Reports') that users can subscribe to.


    Developers use this API to build sophisticated, context-aware notification
    rules, ensuring that network operators and stakeholders are immediately
    informed of events that require their attention.
servers:
  - url: https://v1.api.altostrat.io
security:
  - OAuth2: []
tags:
  - name: Notification Groups
    description: Manage the core notification routing rules.
  - name: Topics
    description: Retrieve available alert categories.
paths:
  /notifications/{groupId}:
    parameters:
      - $ref: '#/components/parameters/GroupId'
    delete:
      tags:
        - Notification Groups
      summary: Delete a Notification Group
      description: Permanently deletes a notification group. This action cannot be undone.
      operationId: deleteNotificationGroup
      responses:
        '204':
          description: No Content - The group was deleted successfully.
        '403':
          description: Forbidden - The user does not have the required permissions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found - The specified notification group does not exist.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - OAuth2:
            - notification:delete
components:
  parameters:
    GroupId:
      name: groupId
      in: path
      required: true
      description: The unique identifier of the notification group.
      schema:
        type: string
        format: uuid
      example: ntfgrp_9b01a14c-1123-4279-88b1-3e42f9b846e1
  schemas:
    ErrorResponse:
      type: object
      properties:
        type:
          type: string
          description: A broad category for the error (e.g., 'invalid_request_error').
          example: invalid_request_error
        code:
          type: string
          description: A short, unique string identifying the specific error.
          example: parameter_missing
        message:
          type: string
          description: A human-readable description of what went wrong.
          example: The 'name' parameter is required for this request.
        doc_url:
          type: string
          description: >-
            A direct link to the documentation page for this specific error
            code.
          example: https://docs.altostrat.io/errors/parameter_missing
  securitySchemes:
    OAuth2:
      type: oauth2
      description: >-
        Altostrat uses OAuth2 for authentication. Tokens can be obtained from
        the Altostrat Authentication API.
      flows:
        authorizationCode:
          authorizationUrl: https://auth.altostrat.io/oauth/authorize
          tokenUrl: https://auth.altostrat.io/oauth/token
          scopes:
            notification:view: Allows viewing notification configurations.
            notification:create: Allows creating new notification configurations.
            notification:update: Allows updating existing notification configurations.
            notification:delete: Allows deleting notification configurations.

````