Palo Alto Networks · Schema

OnboardAppRequest

OnboardAppRequest schema from Palo Alto Networks SaaS Security Posture Management API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
app_type string Application type to onboard (e.g., google_workspace, microsoft_365, salesforce).
display_name string Optional display name for this application instance.
credentials object Authentication credentials required to connect to the application.
View JSON Schema on GitHub

JSON Schema

sspm-api-onboard-app-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OnboardAppRequest",
  "description": "OnboardAppRequest schema from Palo Alto Networks SaaS Security Posture Management API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sspm-api-onboard-app-request-schema.json",
  "type": "object",
  "properties": {
    "app_type": {
      "type": "string",
      "description": "Application type to onboard (e.g., google_workspace, microsoft_365, salesforce)."
    },
    "display_name": {
      "type": "string",
      "description": "Optional display name for this application instance."
    },
    "credentials": {
      "type": "object",
      "description": "Authentication credentials required to connect to the application.",
      "additionalProperties": true
    }
  },
  "required": [
    "app_type"
  ]
}