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

# Get a suppression by ID



## OpenAPI

````yaml openapi/public_cloud/Subscriptions_Suppressions.yaml GET /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}:
    get:
      tags:
        - Subscriptions Suppressions
      summary: Get a suppression by ID
      operationId: getSuppression
      parameters:
        - $ref: '#/components/parameters/platformType'
        - $ref: '#/components/parameters/suppressionRef'
      responses:
        '200':
          description: Suppression
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Suppression'
        '404':
          description: Not found / not visible.
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:
    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).

````