Palo Alto Networks · Capability

Palo Alto Networks SASE 5G Managed Services API — Security Policies

Palo Alto Networks SASE 5G Managed Services API — Security Policies. 5 operations. Lead operation: Palo Alto Networks List 5G Security Policies. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksSecurity Policies

What You Can Do

GET
List5gsecuritypolicies — Palo Alto Networks List 5G Security Policies
/v1/security-policies
POST
Create5gsecuritypolicy — Palo Alto Networks Create 5G Security Policy
/v1/security-policies
GET
Get5gsecuritypolicy — Palo Alto Networks Get 5G Security Policy
/v1/security-policies/{policy-id}
PUT
Update5gsecuritypolicy — Palo Alto Networks Update 5G Security Policy
/v1/security-policies/{policy-id}
DELETE
Delete5gsecuritypolicy — Palo Alto Networks Delete 5G Security Policy
/v1/security-policies/{policy-id}

MCP Tools

palo-alto-networks-list-5g

Palo Alto Networks List 5G Security Policies

read-only idempotent
palo-alto-networks-create-5g

Palo Alto Networks Create 5G Security Policy

palo-alto-networks-get-5g

Palo Alto Networks Get 5G Security Policy

read-only idempotent
palo-alto-networks-update-5g

Palo Alto Networks Update 5G Security Policy

idempotent
palo-alto-networks-delete-5g

Palo Alto Networks Delete 5G Security Policy

idempotent

Capability Spec

palo-alto-sase-5g-security-policies.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks SASE 5G Managed Services API — Security Policies
  description: 'Palo Alto Networks SASE 5G Managed Services API — Security Policies. 5 operations. Lead operation: Palo Alto
    Networks List 5G Security Policies. Self-contained Naftiko capability covering one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - Security Policies
  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-sase-5g-security-policies
    baseUri: https://api.sase.paloaltonetworks.com/5g/v1
    description: Palo Alto Networks SASE 5G Managed Services API — Security Policies business capability. Self-contained,
      no shared references.
    resources:
    - name: security-policies
      path: /security-policies
      operations:
      - name: list5gsecuritypolicies
        method: GET
        description: Palo Alto Networks List 5G Security Policies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: slice_id
          in: query
          type: string
          description: Filter policies by associated network slice.
        - name: offset
          in: query
          type: integer
          description: Number of results to skip for pagination.
        - name: limit
          in: query
          type: integer
          description: Maximum number of policies to return.
      - name: create5gsecuritypolicy
        method: POST
        description: Palo Alto Networks Create 5G Security Policy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: security-policies-policy_id
      path: /security-policies/{policy_id}
      operations:
      - name: get5gsecuritypolicy
        method: GET
        description: Palo Alto Networks Get 5G Security Policy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: policy_id
          in: path
          type: string
          description: Unique identifier of the security policy.
          required: true
      - name: update5gsecuritypolicy
        method: PUT
        description: Palo Alto Networks Update 5G Security Policy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: policy_id
          in: path
          type: string
          description: Unique identifier of the security policy to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: delete5gsecuritypolicy
        method: DELETE
        description: Palo Alto Networks Delete 5G Security Policy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: policy_id
          in: path
          type: string
          description: Unique identifier of the security policy to delete.
          required: true
    authentication:
      type: bearer
      token: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: palo-alto-sase-5g-security-policies-rest
    port: 8080
    description: REST adapter for Palo Alto Networks SASE 5G Managed Services API — Security Policies. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/security-policies
      name: security-policies
      description: REST surface for security-policies.
      operations:
      - method: GET
        name: list5gsecuritypolicies
        description: Palo Alto Networks List 5G Security Policies
        call: palo-alto-sase-5g-security-policies.list5gsecuritypolicies
        with:
          slice_id: rest.slice_id
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: create5gsecuritypolicy
        description: Palo Alto Networks Create 5G Security Policy
        call: palo-alto-sase-5g-security-policies.create5gsecuritypolicy
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/security-policies/{policy-id}
      name: security-policies-policy-id
      description: REST surface for security-policies-policy_id.
      operations:
      - method: GET
        name: get5gsecuritypolicy
        description: Palo Alto Networks Get 5G Security Policy
        call: palo-alto-sase-5g-security-policies.get5gsecuritypolicy
        with:
          policy_id: rest.policy_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: update5gsecuritypolicy
        description: Palo Alto Networks Update 5G Security Policy
        call: palo-alto-sase-5g-security-policies.update5gsecuritypolicy
        with:
          policy_id: rest.policy_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete5gsecuritypolicy
        description: Palo Alto Networks Delete 5G Security Policy
        call: palo-alto-sase-5g-security-policies.delete5gsecuritypolicy
        with:
          policy_id: rest.policy_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-sase-5g-security-policies-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks SASE 5G Managed Services API — Security Policies. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: palo-alto-networks-list-5g
      description: Palo Alto Networks List 5G Security Policies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-sase-5g-security-policies.list5gsecuritypolicies
      with:
        slice_id: tools.slice_id
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-create-5g
      description: Palo Alto Networks Create 5G Security Policy
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: palo-alto-sase-5g-security-policies.create5gsecuritypolicy
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-5g
      description: Palo Alto Networks Get 5G Security Policy
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-sase-5g-security-policies.get5gsecuritypolicy
      with:
        policy_id: tools.policy_id
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-update-5g
      description: Palo Alto Networks Update 5G Security Policy
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: palo-alto-sase-5g-security-policies.update5gsecuritypolicy
      with:
        policy_id: tools.policy_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-delete-5g
      description: Palo Alto Networks Delete 5G Security Policy
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: palo-alto-sase-5g-security-policies.delete5gsecuritypolicy
      with:
        policy_id: tools.policy_id
      outputParameters:
      - type: object
        mapping: $.