Palo Alto Networks · Capability

Palo Alto Networks Cortex XSOAR REST API — Investigations

Palo Alto Networks Cortex XSOAR REST API — Investigations. 2 operations. Lead operation: Palo Alto Networks Create Investigation. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksInvestigations

What You Can Do

POST
Createinvestigation — Palo Alto Networks Create Investigation
/v1/investigation/add
GET
Getinvestigation — Palo Alto Networks Get Investigation
/v1/investigations/{id}

MCP Tools

palo-alto-networks-create-investigation

Palo Alto Networks Create Investigation

palo-alto-networks-get-investigation

Palo Alto Networks Get Investigation

read-only idempotent

Capability Spec

palo-alto-cortex-xsoar-investigations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks Cortex XSOAR REST API — Investigations
  description: 'Palo Alto Networks Cortex XSOAR REST API — Investigations. 2 operations. Lead operation: Palo Alto Networks
    Create Investigation. Self-contained Naftiko capability covering one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - Investigations
  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-cortex-xsoar-investigations
    baseUri: https://{xsoar-server}
    description: Palo Alto Networks Cortex XSOAR REST API — Investigations business capability. Self-contained, no shared
      references.
    resources:
    - name: investigation-add
      path: /investigation/add
      operations:
      - name: createinvestigation
        method: POST
        description: Palo Alto Networks Create Investigation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: investigations-id
      path: /investigations/{id}
      operations:
      - name: getinvestigation
        method: GET
        description: Palo Alto Networks Get Investigation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the investigation.
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: palo-alto-cortex-xsoar-investigations-rest
    port: 8080
    description: REST adapter for Palo Alto Networks Cortex XSOAR REST API — Investigations. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/investigation/add
      name: investigation-add
      description: REST surface for investigation-add.
      operations:
      - method: POST
        name: createinvestigation
        description: Palo Alto Networks Create Investigation
        call: palo-alto-cortex-xsoar-investigations.createinvestigation
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/investigations/{id}
      name: investigations-id
      description: REST surface for investigations-id.
      operations:
      - method: GET
        name: getinvestigation
        description: Palo Alto Networks Get Investigation
        call: palo-alto-cortex-xsoar-investigations.getinvestigation
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-cortex-xsoar-investigations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks Cortex XSOAR REST API — Investigations. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: palo-alto-networks-create-investigation
      description: Palo Alto Networks Create Investigation
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: palo-alto-cortex-xsoar-investigations.createinvestigation
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-investigation
      description: Palo Alto Networks Get Investigation
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-cortex-xsoar-investigations.getinvestigation
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.