> ## Documentation Index
> Fetch the complete documentation index at: https://densify-sync-changelog-7.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete suppressions (bulk; independent per entry)

> Deletes a collection of entries by `suppressionRef`. If **all** succeed,
returns 204. If any fail, returns an array with per-entry status/messages
for failures; successful deletes may omit a message. Suppressions referenced
by subscriptions cannot be deleted.




## OpenAPI

````yaml openapi/public_cloud/Subscriptions_Suppressions.yaml DELETE /subscriptions/{platformType}/suppressions
openapi: 3.1.0
info:
  title: Kubex – Subscriptions Suppressions API
  version: 1.0.0
  description: >
    Catalog of suppression entries (attribute tags or recommendation properties)

    that can be referenced by subscriptions via `suppressionReferences`. Each

    platform (`cloud` or `containers`) has its own catalog; the alias without

    platform behaves like the cloud catalog. Bulk adds/updates are
    all-or-nothing,

    while bulk deletes process entries independently.
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
security: []
tags:
  - name: Subscriptions Suppressions
paths:
  /subscriptions/{platformType}/suppressions:
    delete:
      tags:
        - Subscriptions Suppressions
      summary: Delete suppressions (bulk; independent per entry)
      description: >
        Deletes a collection of entries by `suppressionRef`. If **all** succeed,

        returns 204. If any fail, returns an array with per-entry
        status/messages

        for failures; successful deletes may omit a message. Suppressions
        referenced

        by subscriptions cannot be deleted.
      operationId: deleteSuppressions
      parameters:
        - $ref: '#/components/parameters/platformType'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              minItems: 1
              items:
                type: object
                properties:
                  suppressionRef:
                    type: string
                required:
                  - suppressionRef
      responses:
        '200':
          description: Per-entry delete results (partial failures and/or mixed outcomes)
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeleteResult'
        '204':
          description: No Content (all deletes succeeded).
        '404':
          description: Not found (when deleting a single entry via /suppressionRef).
components:
  parameters:
    platformType:
      name: platformType
      in: path
      required: true
      description: Platform catalog to target (`cloud` or `containers`).
      schema:
        type: string
        enum:
          - cloud
          - containers
  schemas:
    DeleteResult:
      type: object
      properties:
        suppressionRef:
          type: string
        suppressionName:
          type: string
        message:
          type: string
        status:
          type: integer
          description: HTTP-like code (e.g., 200, 204, 404).

````