changedInput schema / properties / caseID / description
Previous value: -"Full case handle (case ID) containing the participant to update. 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 for optimistic locking. This must be obtained from a previous GET request (get_participant, get_case_participants, etc.) and represents the current state of the participant data. Used 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 page-related operations for embedded pages, page lists, or page groups. Used for complex data structure manipulation within the participant record."New value: +"Optional list of page-related operations for embedded pages, page lists, or page groups. Required for setting embedded page references."
changedInput schema / properties / pageInstructions / items / description
Previous value: -"Page instruction object for embedded page operations"New 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",
- "participantID",
- "eTag"
-]New value: +[
+ "caseID",
+ "participantID"
+]