Palo Alto Networks · Schema

WebhookChannelDetails

WebhookChannelDetails schema from Multi-Tenant Notifications API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
urls array List of Webhook URLs - do not include token in the URL
authType string Webhook Authentication Type
token string Webhook token value
View JSON Schema on GitHub

JSON Schema

sase-multitenant-notifications-api-webhook-channel-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WebhookChannelDetails",
  "description": "WebhookChannelDetails schema from Multi-Tenant Notifications API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-multitenant-notifications-api-webhook-channel-details-schema.json",
  "type": "object",
  "properties": {
    "urls": {
      "description": "List of Webhook URLs - do not include token in the URL",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "authType": {
      "description": "Webhook Authentication Type",
      "type": "string",
      "enum": [
        "NO_AUTH",
        "TOKEN"
      ]
    },
    "token": {
      "description": "Webhook token value",
      "type": "string"
    }
  },
  "required": [
    "urls",
    "authType",
    "token"
  ]
}