Palo Alto Networks · Capability

Palo Alto Networks Prisma Cloud Code Security API — Suppressions

Palo Alto Networks Prisma Cloud Code Security API — Suppressions. 3 operations. Lead operation: Palo Alto Networks List Suppressions. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksSuppressions

What You Can Do

GET
Listsuppressions — Palo Alto Networks List Suppressions
/v1/suppressions
POST
Createsuppression — Palo Alto Networks Create a Suppression
/v1/suppressions
DELETE
Deletesuppression — Palo Alto Networks Delete a Suppression
/v1/suppressions/{suppression-id}

MCP Tools

palo-alto-networks-list-suppressions

Palo Alto Networks List Suppressions

read-only idempotent
palo-alto-networks-create-suppression

Palo Alto Networks Create a Suppression

palo-alto-networks-delete-suppression

Palo Alto Networks Delete a Suppression

idempotent

Capability Spec

palo-alto-prisma-cloud-code-security-suppressions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks Prisma Cloud Code Security API — Suppressions
  description: 'Palo Alto Networks Prisma Cloud Code Security API — Suppressions. 3 operations. Lead operation: Palo Alto
    Networks List Suppressions. Self-contained Naftiko capability covering one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - Suppressions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PALO_ALTO_NETWORKS_API_KEY: PALO_ALTO_NETWORKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: palo-alto-prisma-cloud-code-security-suppressions
    baseUri: https://api.prismacloud.io/code/api/v1
    description: Palo Alto Networks Prisma Cloud Code Security API — Suppressions business capability. Self-contained, no
      shared references.
    resources:
    - name: suppressions
      path: /suppressions
      operations:
      - name: listsuppressions
        method: GET
        description: Palo Alto Networks List Suppressions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
          description: Number of records to skip for pagination.
        - name: limit
          in: query
          type: integer
          description: Maximum number of records to return.
        - name: policyId
          in: query
          type: string
          description: Filter suppressions by Checkov policy ID.
        - name: suppressionType
          in: query
          type: string
          description: Filter by suppression scope.
      - name: createsuppression
        method: POST
        description: Palo Alto Networks Create a Suppression
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: suppressions-suppression_id
      path: /suppressions/{suppression_id}
      operations:
      - name: deletesuppression
        method: DELETE
        description: Palo Alto Networks Delete a Suppression
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: suppression_id
          in: path
          type: string
          description: Unique suppression identifier.
          required: true
    authentication:
      type: apikey
      key: x-redlock-auth
      value: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: palo-alto-prisma-cloud-code-security-suppressions-rest
    port: 8080
    description: REST adapter for Palo Alto Networks Prisma Cloud Code Security API — Suppressions. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/suppressions
      name: suppressions
      description: REST surface for suppressions.
      operations:
      - method: GET
        name: listsuppressions
        description: Palo Alto Networks List Suppressions
        call: palo-alto-prisma-cloud-code-security-suppressions.listsuppressions
        with:
          offset: rest.offset
          limit: rest.limit
          policyId: rest.policyId
          suppressionType: rest.suppressionType
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsuppression
        description: Palo Alto Networks Create a Suppression
        call: palo-alto-prisma-cloud-code-security-suppressions.createsuppression
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/suppressions/{suppression-id}
      name: suppressions-suppression-id
      description: REST surface for suppressions-suppression_id.
      operations:
      - method: DELETE
        name: deletesuppression
        description: Palo Alto Networks Delete a Suppression
        call: palo-alto-prisma-cloud-code-security-suppressions.deletesuppression
        with:
          suppression_id: rest.suppression_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-prisma-cloud-code-security-suppressions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks Prisma Cloud Code Security API — Suppressions. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: palo-alto-networks-list-suppressions
      description: Palo Alto Networks List Suppressions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-prisma-cloud-code-security-suppressions.listsuppressions
      with:
        offset: tools.offset
        limit: tools.limit
        policyId: tools.policyId
        suppressionType: tools.suppressionType
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-create-suppression
      description: Palo Alto Networks Create a Suppression
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: palo-alto-prisma-cloud-code-security-suppressions.createsuppression
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-delete-suppression
      description: Palo Alto Networks Delete a Suppression
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: palo-alto-prisma-cloud-code-security-suppressions.deletesuppression
      with:
        suppression_id: tools.suppression_id
      outputParameters:
      - type: object
        mapping: $.