changedInput schema / properties / actionID / description
Previous value: -"Name of the case action - ID of the flow action rule. This corresponds to the Flow Action rule configured in the Pega application where field calculations are defined. Example: \"pyUpdateCaseDetails\", \"CompleteReview\", \"Approve\"."New value: +"Action ID for case/stage action (Example: \"pyUpdateCaseDetails\", \"pyApproval\"). CRITICAL: Action IDs are CASE-SENSITIVE and have no spaces even if display names do (\"Edit details\" → \"pyUpdateCaseDetails\"). Use get_case to find correct ID from availableActions array - use \"ID\" field not \"name\" field."
changedInput schema / properties / calculations / properties / fields / items / properties / name / description
Previous value: -"Name of the field to recalculate. Must be a valid property reference within the case action view."New value: +"Name of the field to recalculate. a valid property reference within the case action view."
changedInput schema / properties / calculations / properties / whens / items / properties / name / description
Previous value: -"Name of the when condition to recalculate. Must be a valid when rule reference accessible within the case action context."New value: +"Name of the when condition to recalculate. a valid when rule reference accessible within the case action context."
changedInput schema / properties / caseID / description
Previous value: -"Full case handle (case ID) to perform field recalculation on. Format: {OrgID}-{AppName}-{CaseType} {CaseNumber}. Example: \"ON6E5R-DIYRecipe-Work-RecipeCollection R-1008\". Must be a complete case identifier including spaces and special characters."New value: +"Case ID. Example: \"MYORG-APP-WORK C-1001\". Complete identifier including spaces.\"ON6E5R-DIYRecipe-Work-RecipeCollection R-1008\". a complete case identifier including spaces and special characters."
changedInput schema / properties / eTag / description
Previous value: -"Required eTag unique value representing the most recent save date time (pxSaveDateTime) of the case. This must be equal to the eTag header from the response of the most recent case update request, or from a get_case_action request for this case action. Used for optimistic locking to prevent concurrent modification conflicts."New value: +"Optional. Auto-fetched if omitted. For faster execution, use eTag from previous response."
changedInput schema / properties / pageInstructions / description
Previous value: -"Optional list of page-related operations to be performed on embedded pages, page lists, or page group properties before recalculation. These operations allow manipulation of complex data structures that may affect calculation results. Each instruction specifies the operation type and target page structure."New value: +"Optional list of page-related operations for embedded pages, page lists, or page groups. Required for setting embedded page references."
addedInput schema / properties / pageInstructions / items / description
Added value: +"Page operation for embedded pages. Use REPLACE instruction to set embedded page references with full object including pzInsKey. Example: {\"instruction\": \"REPLACE\", \"target\": \"PageName\", \"content\": {\"Property\": \"value\", \"pyID\": \"ID-123\", \"pzInsKey\": \"CLASS-NAME ID-123\"}}"
addedInput schema / properties / pageInstructions / items / properties
Added value: +{
+ "content": {
+ "description": "Content to set on the embedded page (required for UPDATE and REPLACE)",
+ "type": "object"
+ },
+ "instruction": {
+ "description": "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)",
+ "enum": [
+ "UPDATE",
+ "REPLACE",
+ "DELETE",
+ "APPEND",
+ "INSERT",
+ "MOVE"
+ ],
+ "type": "string"
+ },
+ "target": {
+ "description": "Target embedded page name",
+ "type": "string"
+ }
+}
addedInput schema / properties / pageInstructions / items / required
Added value: +[
+ "instruction",
+ "target"
+]
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 / required
Previous value: -[
- "caseID",
- "actionID",
- "eTag",
- "calculations"
-]New value: +[
+ "caseID",
+ "actionID",
+ "calculations"
+]