Palo Alto Networks · JSON Structure

Cortex Xsoar Api Update Incident Request Structure

UpdateIncidentRequest schema from Palo Alto Networks Cortex XSOAR REST API

Type: object Properties: 9 Required: 1
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

UpdateIncidentRequest is a JSON Structure definition published by Palo Alto Networks, describing 9 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id version status severity owner details closeReason closeNotes CustomFields

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/cortex-xsoar-api-update-incident-request-structure.json",
  "name": "UpdateIncidentRequest",
  "description": "UpdateIncidentRequest schema from Palo Alto Networks Cortex XSOAR REST API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the incident to update."
    },
    "version": {
      "type": "int32",
      "description": "Incident version for optimistic locking. Retrieve from a prior GET request."
    },
    "status": {
      "type": "int32",
      "enum": [
        0,
        1,
        2,
        3
      ]
    },
    "severity": {
      "type": "int32",
      "enum": [
        0,
        1,
        2,
        3,
        4,
        5
      ]
    },
    "owner": {
      "type": "string"
    },
    "details": {
      "type": "string"
    },
    "closeReason": {
      "type": "string"
    },
    "closeNotes": {
      "type": "string"
    },
    "CustomFields": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "id"
  ]
}