Palo Alto Networks · Capability

Palo Alto Networks SaaS Security API — Incidents

Palo Alto Networks SaaS Security API — Incidents. 3 operations. Lead operation: Palo Alto Networks List 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 Incidents
/v1/api/incidents
GET
Getincident — Palo Alto Networks Get Incident Details
/v1/api/incidents/{id}
PUT
Updateincident — Palo Alto Networks Update Incident
/v1/api/incidents/{id}

MCP Tools

palo-alto-networks-list-incidents

Palo Alto Networks List Incidents

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

Palo Alto Networks Get Incident Details

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

Palo Alto Networks Update Incident

idempotent

Capability Spec

palo-alto-saas-security-incidents.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks SaaS Security API — Incidents
  description: 'Palo Alto Networks SaaS Security API — Incidents. 3 operations. Lead operation: Palo Alto Networks List 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-saas-security-incidents
    baseUri: https://api.aperture.paloaltonetworks.com
    description: Palo Alto Networks SaaS Security API — Incidents business capability. Self-contained, no shared references.
    resources:
    - name: api-incidents
      path: /api/incidents
      operations:
      - name: listincidents
        method: GET
        description: Palo Alto Networks List Incidents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
          description: Number of results to skip for pagination.
        - name: limit
          in: query
          type: integer
          description: Maximum number of incidents to return per page.
        - 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: app_id
          in: query
          type: string
          description: Filter incidents by SaaS application ID.
        - name: start_date
          in: query
          type: string
          description: Filter incidents created on or after this date (ISO 8601).
        - name: end_date
          in: query
          type: string
          description: Filter incidents created on or before this date (ISO 8601).
    - name: api-incidents-id
      path: /api/incidents/{id}
      operations:
      - name: getincident
        method: GET
        description: Palo Alto Networks Get Incident Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the incident.
          required: true
      - name: updateincident
        method: PUT
        description: Palo Alto Networks Update Incident
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the incident to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: palo-alto-saas-security-incidents-rest
    port: 8080
    description: REST adapter for Palo Alto Networks SaaS Security API — Incidents. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/incidents
      name: api-incidents
      description: REST surface for api-incidents.
      operations:
      - method: GET
        name: listincidents
        description: Palo Alto Networks List Incidents
        call: palo-alto-saas-security-incidents.listincidents
        with:
          offset: rest.offset
          limit: rest.limit
          status: rest.status
          severity: rest.severity
          app_id: rest.app_id
          start_date: rest.start_date
          end_date: rest.end_date
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/incidents/{id}
      name: api-incidents-id
      description: REST surface for api-incidents-id.
      operations:
      - method: GET
        name: getincident
        description: Palo Alto Networks Get Incident Details
        call: palo-alto-saas-security-incidents.getincident
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateincident
        description: Palo Alto Networks Update Incident
        call: palo-alto-saas-security-incidents.updateincident
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-saas-security-incidents-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks SaaS Security API — Incidents. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: palo-alto-networks-list-incidents
      description: Palo Alto Networks List Incidents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-saas-security-incidents.listincidents
      with:
        offset: tools.offset
        limit: tools.limit
        status: tools.status
        severity: tools.severity
        app_id: tools.app_id
        start_date: tools.start_date
        end_date: tools.end_date
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-incident
      description: Palo Alto Networks Get Incident Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-saas-security-incidents.getincident
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-update-incident
      description: Palo Alto Networks Update Incident
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: palo-alto-saas-security-incidents.updateincident
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.