Netskope MCP Server

updatePrivateAppPublishers

Input Schema

NameRequiredDescriptionDefault
private_app_idsYesArray of private app IDs
publisher_idsYesArray of publisher IDs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "private_app_ids": { "description": "Array of private app IDs", "items": { "type": "string" }, "type": "array" }, "publisher_ids": { "description": "Array of publisher IDs", "items": { "type": "string" }, "type": "array" } }, "required": [ "private_app_ids", "publisher_ids" ], "type": "object" }