changedInput schema / properties / caseTypeID / description
Previous value: -"The class of the case being created (required)"New value: +"Case type ID (Example: \"Org-App-Work-CaseType\"). Use get_case_types to discover available types."
changedInput schema / properties / content / description
Previous value: -"A map of scalar properties and embedded page properties to be set upon case creation (optional). If not provided, the tool will discover available fields and return guidance with examples."New value: +"Field values for case creation (optional). Empty {} often works. If fields required, automatic discovery provides guidance. For embedded pages use pageInstructions."
changedInput schema / properties / pageInstructions / description
Previous value: -"A list of page-related operations to be performed on embedded pages, page lists, or page group properties (optional)"New value: +"Optional list of page-related operations for embedded pages, page lists, or page groups. Required for setting embedded page references (Example: Collection, Datasource). See Pega DX API documentation on page instructions for embedded pages."
changedInput schema / properties / pageInstructions / items / description
Previous value: -"Page operation object with instruction type and target"New value: +"Page operation for embedded pages. IMPORTANT: Use REPLACE instruction to set embedded page references like Collection or Datasource with full object including pzInsKey. Example: {\"instruction\": \"REPLACE\", \"target\": \"Collection\", \"content\": {\"CollectionName\": \"knowledge\", \"pyID\": \"DC-1\", \"pzInsKey\": \"PEGAFW-QNA-WORK DC-1\"}}"
addedInput schema / properties / pageInstructions / items / properties / content
Added value: +{
+ "description": "Content to set on the embedded page (required for UPDATE and REPLACE)",
+ "type": "object"
+}
changedInput schema / properties / pageInstructions / items / properties / instruction / description
Previous value: -"The type of page instruction to perform"New value: +"Page instruction type. UPDATE (add fields to page), REPLACE (replace entire page), DELETE (remove page), APPEND (add item to page list), INSERT (insert item in page list), MOVE (reorder page list items)"
addedInput schema / properties / pageInstructions / items / properties / instruction / enum
Added value: +[
+ "UPDATE",
+ "REPLACE",
+ "DELETE",
+ "APPEND",
+ "INSERT",
+ "MOVE"
+]
changedInput schema / properties / pageInstructions / items / properties / target / description
Previous value: -"The target page or page list for the instruction"New value: +"Target embedded page name (Example: \"Collection\", \"Datasource\")"
addedInput schema / properties / pageInstructions / items / required
Added value: +[
+ "instruction",
+ "target"
+]
changedInput schema / properties / parentCaseID / description
Previous value: -"The ID of the case serving as the parent case (optional)"New value: +"Parent case ID for child case creation"
addedInput schema / properties / processID
Added value: +{
+ "description": "Starting process ID to use for case creation (Example: \"pyStartCase\"). Optional parameter that specifies which flow to use when creating the case. Some case types may require this to bypass initial validation.",
+ "type": "string"
+}
addedInput schema / properties / sessionCredentials
Added value: +{
+ "description": "Optional session-specific credentials. If not provided, uses environment variables. Supports two authentication modes: (1) OAuth mode - provide baseUrl, clientId, and clientSecret, or (2) Token mode - provide baseUrl and accessToken.",
+ "properties": {
+ "accessToken": {
+ "description": "Direct access token (required for token mode)",
+ "type": "string"
+ },
+ "apiVersion": {
+ "default": "v2",
+ "description": "API version (optional, defaults to v2)",
+ "type": "string"
+ },
+ "baseUrl": {
+ "description": "Pega base URL (required if providing credentials)",
+ "type": "string"
+ },
+ "clientId": {
+ "description": "OAuth2 client ID (required for OAuth mode)",
+ "type": "string"
+ },
+ "clientSecret": {
+ "description": "OAuth2 client secret (required for OAuth mode)",
+ "type": "string"
+ },
+ "sessionId": {
+ "description": "Optional session ID. If not provided, a new session will be created.",
+ "type": "string"
+ },
+ "tokenExpiry": {
+ "description": "Token expiry in seconds from now (optional for token mode)",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}
changedInput schema / properties / viewType / description
Previous value: -"Type of view data to return. \"none\" returns no UI resources, \"form\" returns form UI metadata, \"page\" returns full page UI metadata"New value: +"UI resources to return. \"none\" returns no UI resources, \"form\" returns form UI metadata, \"page\" returns full page UI metadata"