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

# Delete properties (bulk)

> Deletes a collection of properties by ID.  
Each delete is independent; errors for some IDs do not affect others.  
Properties referenced by subscriptions cannot be deleted.




## OpenAPI

````yaml openapi/public_cloud/Subscriptions_Properties.yaml DELETE /subscriptions/{platformType}/properties
openapi: 3.1.0
info:
  title: Kubex – Subscriptions Properties API
  version: 1.0.0
  description: >
    Catalog of recommendation properties available for use in subscription
    filters (`propertyReferences`).

    Separate catalogs exist per platform type; alias without platform behaves
    like cloud.  

    Admins can manage global/private properties; non-admins can manage only
    their private ones.
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
security: []
tags:
  - name: Subscriptions Properties
paths:
  /subscriptions/{platformType}/properties:
    delete:
      tags:
        - Subscriptions Properties
      summary: Delete properties (bulk)
      description: |
        Deletes a collection of properties by ID.  
        Each delete is independent; errors for some IDs do not affect others.  
        Properties referenced by subscriptions cannot be deleted.
      operationId: deleteSubscriptionProperties
      parameters:
        - $ref: '#/components/parameters/platformType'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              minItems: 1
              items:
                type: object
                properties:
                  propertyRef:
                    type: string
                required:
                  - propertyRef
      responses:
        '200':
          description: Partial failures (per-item status)
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeleteResult'
        '204':
          description: No Content (all attempted deletes processed).
        '401':
          description: Authentication failed.
        '404':
          description: Not found.
        '500':
          description: Server error.
components:
  parameters:
    platformType:
      name: platformType
      in: path
      required: true
      description: Platform catalog (cloud or containers).
      schema:
        type: string
        enum:
          - cloud
          - containers
  schemas:
    DeleteResult:
      type: object
      properties:
        propertyRef:
          type: string
        message:
          type: string
        status:
          type: integer
          description: HTTP-like code (200, 204, 400, 404, 500).

````