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

# Delete a suppression by ID

> Returns 204 on success; 404 if not found; if referenced by subscriptions
(or other errors), returns an object with `suppressionRef`/`suppressionName`
and `message`.




## OpenAPI

````yaml openapi/public_cloud/Subscriptions_Suppressions.yaml DELETE /subscriptions/{platformType}/suppressions/{suppressionRef}
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/{suppressionRef}:
    delete:
      tags:
        - Subscriptions Suppressions
      summary: Delete a suppression by ID
      description: >
        Returns 204 on success; 404 if not found; if referenced by subscriptions

        (or other errors), returns an object with
        `suppressionRef`/`suppressionName`

        and `message`.
      operationId: deleteSuppression
      parameters:
        - $ref: '#/components/parameters/platformType'
        - $ref: '#/components/parameters/suppressionRef'
      responses:
        '200':
          description: In-use error payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteResult'
        '204':
          description: No Content.
        '404':
          description: Not found.
components:
  parameters:
    platformType:
      name: platformType
      in: path
      required: true
      description: Platform catalog to target (`cloud` or `containers`).
      schema:
        type: string
        enum:
          - cloud
          - containers
    suppressionRef:
      name: suppressionRef
      in: path
      required: true
      description: Unique suppression identifier.
      schema:
        type: string
  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).

````