Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions openapi-specs/scm/config/incidents/Unified_SCM_Incident.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ info:
description: "Consolidates security and operational incidents from multiple \nPaloAlto\
\ Networks products into a unified management interface. Provides read-only\n\
access to search, filter, and analyze incident data across the Strata Cloud\n\
Manager ecosystem. This Open API spec file was created on March 18, 2026. \xA9\
Manager ecosystem. This Open API spec file was created on March 30, 2026. \xA9\
\ 2026 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark of\
\ Palo Alto Networks. A list of our trademarks can be found at [https://www.paloaltonetworks.com/company/trademarks.html](https://www.paloaltonetworks.com/company/trademarks.html).\
\ All other marks mentioned herein may be trademarks of their respective companies."
Expand All @@ -21,19 +21,37 @@ components:
description: JWT authentication with bearer token
scheme: bearer
bearerFormat: Bearer [token]
parameters:
PrismaTenantHeader:
in: header
name: prisma-tenant
description: The tenant and sub-tenant ID identifier (e.g., tenant_id:sub_tenant_id).
required: false
schema:
type: string
PrismaRegionHeader:
in: header
name: X-PANW-Region
description: The region for request(e.g., americas, europe, uk, au etc).
required: true
schema:
type: string
schemas:
FilterRule:
type: object
properties:
property:
type: string
example: incident_id
example: status
operator:
type: string
example: in
values:
type: array
items:
type: string
example:
- Raised
FilterObject:
type: object
properties:
Expand All @@ -46,17 +64,21 @@ components:
properties:
page_size:
type: integer
example: 25
page_number:
type: integer
example: 1
order_by:
type: array
items:
type: object
properties:
property:
type: string
example: updated_time
order:
type: string
example: desc
enum:
- asc
- desc
Expand Down Expand Up @@ -486,7 +508,9 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
parameters: []
parameters:
- $ref: '#/components/parameters/PrismaTenantHeader'
- $ref: '#/components/parameters/PrismaRegionHeader'
tags:
- Incidents APIs
requestBody:
Expand Down Expand Up @@ -703,6 +727,8 @@ paths:
schema:
$ref: '#/components/schemas/ErrorResponse'
parameters:
- $ref: '#/components/parameters/PrismaTenantHeader'
- $ref: '#/components/parameters/PrismaRegionHeader'
- name: incident-id
in: path
required: true
Expand Down
Loading