Palo Alto Networks · Capability

Palo Alto Networks Enterprise DLP API — Incidents

Palo Alto Networks Enterprise DLP API — Incidents. 4 operations. Lead operation: Palo Alto Networks List DLP Incidents. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksIncidents

What You Can Do

GET
Listincidents — Palo Alto Networks List DLP Incidents
/v1/incidents
GET
Getincident — Palo Alto Networks Get DLP Incident by ID
/v1/incidents/{incident-id}
PUT
Updateincident — Palo Alto Networks Update DLP Incident
/v1/incidents/{incident-id}
GET
Getincidentsnippets — Palo Alto Networks Get Incident Content Snippets
/v1/incidents/{incident-id}/snippets

MCP Tools

palo-alto-networks-list-dlp

Palo Alto Networks List DLP Incidents

read-only idempotent
palo-alto-networks-get-dlp

Palo Alto Networks Get DLP Incident by ID

read-only idempotent
palo-alto-networks-update-dlp

Palo Alto Networks Update DLP Incident

idempotent
palo-alto-networks-get-incident

Palo Alto Networks Get Incident Content Snippets

read-only idempotent

Capability Spec

palo-alto-dlp-incidents.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks Enterprise DLP API — Incidents
  description: 'Palo Alto Networks Enterprise DLP API — Incidents. 4 operations. Lead operation: Palo Alto Networks List DLP
    Incidents. Self-contained Naftiko capability covering one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - Incidents
  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-dlp-incidents
    baseUri: https://api.dlp.paloaltonetworks.com/v4
    description: Palo Alto Networks Enterprise DLP API — Incidents business capability. Self-contained, no shared references.
    resources:
    - name: incidents
      path: /incidents
      operations:
      - name: listincidents
        method: GET
        description: Palo Alto Networks List DLP Incidents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
          description: Pagination offset.
        - name: limit
          in: query
          type: integer
          description: Maximum number of incidents to return.
        - name: status
          in: query
          type: string
          description: Filter incidents by current status.
        - name: severity
          in: query
          type: string
          description: Filter incidents by severity level.
        - name: start_time
          in: query
          type: string
          description: Start of time range filter (ISO 8601 format).
        - name: end_time
          in: query
          type: string
          description: End of time range filter (ISO 8601 format).
    - name: incidents-incident_id
      path: /incidents/{incident_id}
      operations:
      - name: getincident
        method: GET
        description: Palo Alto Networks Get DLP Incident by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: incident_id
          in: path
          type: string
          description: Unique incident identifier.
          required: true
      - name: updateincident
        method: PUT
        description: Palo Alto Networks Update DLP Incident
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: incident_id
          in: path
          type: string
          description: Unique incident identifier.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: incidents-incident_id-snippets
      path: /incidents/{incident_id}/snippets
      operations:
      - name: getincidentsnippets
        method: GET
        description: Palo Alto Networks Get Incident Content Snippets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: incident_id
          in: path
          type: string
          description: Unique incident identifier.
          required: true
    authentication:
      type: bearer
      token: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: palo-alto-dlp-incidents-rest
    port: 8080
    description: REST adapter for Palo Alto Networks Enterprise DLP API — Incidents. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/incidents
      name: incidents
      description: REST surface for incidents.
      operations:
      - method: GET
        name: listincidents
        description: Palo Alto Networks List DLP Incidents
        call: palo-alto-dlp-incidents.listincidents
        with:
          offset: rest.offset
          limit: rest.limit
          status: rest.status
          severity: rest.severity
          start_time: rest.start_time
          end_time: rest.end_time
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/incidents/{incident-id}
      name: incidents-incident-id
      description: REST surface for incidents-incident_id.
      operations:
      - method: GET
        name: getincident
        description: Palo Alto Networks Get DLP Incident by ID
        call: palo-alto-dlp-incidents.getincident
        with:
          incident_id: rest.incident_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateincident
        description: Palo Alto Networks Update DLP Incident
        call: palo-alto-dlp-incidents.updateincident
        with:
          incident_id: rest.incident_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/incidents/{incident-id}/snippets
      name: incidents-incident-id-snippets
      description: REST surface for incidents-incident_id-snippets.
      operations:
      - method: GET
        name: getincidentsnippets
        description: Palo Alto Networks Get Incident Content Snippets
        call: palo-alto-dlp-incidents.getincidentsnippets
        with:
          incident_id: rest.incident_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-dlp-incidents-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks Enterprise DLP API — Incidents. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: palo-alto-networks-list-dlp
      description: Palo Alto Networks List DLP Incidents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-dlp-incidents.listincidents
      with:
        offset: tools.offset
        limit: tools.limit
        status: tools.status
        severity: tools.severity
        start_time: tools.start_time
        end_time: tools.end_time
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-dlp
      description: Palo Alto Networks Get DLP Incident by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-dlp-incidents.getincident
      with:
        incident_id: tools.incident_id
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-update-dlp
      description: Palo Alto Networks Update DLP Incident
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: palo-alto-dlp-incidents.updateincident
      with:
        incident_id: tools.incident_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-incident
      description: Palo Alto Networks Get Incident Content Snippets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-dlp-incidents.getincidentsnippets
      with:
        incident_id: tools.incident_id
      outputParameters:
      - type: object
        mapping: $.