> ## 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.

# List suppressions for a platform

> Returns global/private suppression entries; use `type` and (admin only)
`owner` to filter.




## OpenAPI

````yaml openapi/public_cloud/Subscriptions_Suppressions.yaml GET /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:
    get:
      tags:
        - Subscriptions Suppressions
      summary: List suppressions for a platform
      description: |
        Returns global/private suppression entries; use `type` and (admin only)
        `owner` to filter.
      operationId: listSuppressions
      parameters:
        - $ref: '#/components/parameters/platformType'
        - $ref: '#/components/parameters/type'
        - $ref: '#/components/parameters/owner'
      responses:
        '200':
          description: Suppression list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Suppression'
components:
  parameters:
    platformType:
      name: platformType
      in: path
      required: true
      description: Platform catalog to target (`cloud` or `containers`).
      schema:
        type: string
        enum:
          - cloud
          - containers
    type:
      name: type
      in: query
      required: false
      description: >
        Which suppressions to return: `all` (default), `global`, or `owner`.
        Non-admins

        only see their own private entries with `owner`.
      schema:
        type: string
        enum:
          - all
          - global
          - owner
    owner:
      name: owner
      in: query
      required: false
      description: >-
        Username used with `type=owner` (admins can query any user; non-admins
        only themselves; others → 400 “Current login user cannot query for
        owner”).
      schema:
        type: string
  schemas:
    Suppression:
      type: object
      properties:
        suppressionRef:
          type: string
          description: Unique reference ID.
        suppressionName:
          type: string
          description: Suppression name.
        aliasName:
          type: string
          description: Alias for display.
        attributeName:
          type: string
          description: >
            Attribute name (e.g., “Business Applications”, “Resource Tags”,
            “Container Labels”). For “Resource Tags”/“Container Labels”, supply
            `key` and `technology`. Must exist in Kubex standard attributes.
        key:
          type: string
          description: Resource tag/label key (with technology).
        technology:
          type: string
          description: 'Technology for resource attribute (supported: AWS, CONTAINER).'
          enum:
            - AWS
            - CONTAINER
        propertyName:
          type: string
          description: >
            Recommendation element name (must exist in Recommendations schema
            for the platform).
        owner:
          type: string
          description: >
            Empty = global; otherwise username for private entry. Admins can set
            empty (global); non-admins limited to self.
        message:
          type: string
          description: Error/status message (on error).
        status:
          type: integer
          description: HTTP-like status code (200, 204, 400, 401, 404, 415, 500).

````