> ## 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 subscriptions (bulk)

> Deletes a **collection** of subscriptions by ID. Each delete is independent; an error on one
does not affect others. Success returns **204 No Content**; **404 Not Found** if a sub doesn't
exist or you lack privilege (non-owner, non-admin). Admins may delete any global/private subs. 




## OpenAPI

````yaml openapi/public_cloud/Subscriptions.yaml DELETE /subscriptions/{platformType}
openapi: 3.0.3
info:
  title: Kubex – Subscriptions API
  version: 1.0.0
  description: >
    Create and manage subscription-based notifications for Kubex cloud and
    container recommendations.

    - `GET /subscriptions/{platformType}` lists subscriptions with filters.

    - `POST /subscriptions/{platformType}` creates **one or more** subscriptions
    (bulk add, all-or-nothing).

    - `PUT /subscriptions/{platformType}/{subscriptionRef}` replaces an existing
    subscription.

    - `DELETE /subscriptions/{platformType}` deletes **one or more**
    subscriptions.

    - `DELETE /subscriptions/{platformType}/{subscriptionRef}` deletes a single
    subscription.

    Notes:

    • `platformType` is `cloud` or `containers`; `/subscriptions` (no platform)
    behaves like `/subscriptions/cloud` for backward compatibility. 
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
security: []
tags:
  - name: Subscriptions
paths:
  /subscriptions/{platformType}:
    delete:
      tags:
        - Subscriptions
      summary: Delete subscriptions (bulk)
      description: >
        Deletes a **collection** of subscriptions by ID. Each delete is
        independent; an error on one

        does not affect others. Success returns **204 No Content**; **404 Not
        Found** if a sub doesn't

        exist or you lack privilege (non-owner, non-admin). Admins may delete
        any global/private subs. 
      operationId: deleteSubscriptions
      parameters:
        - $ref: '#/components/parameters/platformType'
      responses:
        '204':
          description: No Content (all attempted deletes processed).
        '401':
          description: Authentication failed.
        '404':
          description: Not Found / No privilege.
        '500':
          description: Server error.
components:
  parameters:
    platformType:
      name: platformType
      in: path
      required: true
      description: Technology platform (`cloud` or `containers`).
      schema:
        type: string
        enum:
          - cloud
          - containers

````