changedInput schema / properties / actionID / description
Previous value: -"Name of the assignment action to perform - ID of the flow action rule to be executed on the assignment. This corresponds to a specific flow action configured in the Pega application. Example: \"CompleteVerification\", \"Approve\", \"Reject\"."New value: +"Action ID from assignment (Example: \"pyApproval\", \"Submit\"). CRITICAL: Action IDs are CASE-SENSITIVE and have no spaces even if display names do (\"Complete Review\" → \"CompleteReview\"). Use get_assignment to find correct ID from actions array - use \"ID\" field not \"name\" field."
changedInput schema / properties / assignmentID / description
Previous value: -"Full handle of the assignment to perform the action on. Format: ASSIGN-WORKLIST {caseID}!{processID}. Example: \"ASSIGN-WORKLIST O1UGTM-TESTAPP13-WORK T-35005!APPROVAL_FLOW\". This is the complete assignment identifier that uniquely identifies the specific assignment instance."New value: +"Assignment ID. Format: ASSIGN-WORKLIST {caseID}!{processID}. Example: \"ASSIGN-WORKLIST MYORG-APP-WORK C-1001!PROCESS\"\"ASSIGN-WORKLIST O1UGTM-TESTAPP13-WORK T-35005!APPROVAL_FLOW\". This is the complete assignment identifier that uniquely identifies the specific assignment instance."
removedInput schema / properties / attachments / items / properties
Removed value: -{
- "fileContent": {
- "description": "Base64 encoded file content",
- "type": "string"
- },
- "fileName": {
- "description": "Name of the attachment file",
- "type": "string"
- },
- "mimeType": {
- "description": "MIME type of the attachment",
- "type": "string"
- }
-}
changedInput schema / properties / content / description
Previous value: -"Optional map of scalar and embedded page values to be set to the fields included in the assignment action's view. Only fields that are part of the submitted assignment action's view can be modified. Field names should match the property names defined in the Pega application. Example: {\"EmployeeName\": \"Celine\", \"EmployeeAge\": 55, \"EmployeeStatus\": \"Active\"}. Values will overwrite any settings made from pre-processing Data Transforms."New value: +"Field values to submit. ALL required fields must have valid values (see get_assignment to identify required fields with \"required\": true). Only fields in the assignment action view can be modified."
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_assignment_action request for this assignment. 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 groups included in the assignment action's view. These operations allow manipulation of complex data structures within the case. Each instruction specifies the operation type and target page structure. Only pages included in the assignment action's view can be modified."New value: +"Optional list of page-related operations for embedded pages, page lists, or page groups. Required for setting embedded page references. Only pages included in the assignment action's view can be modified."
changedInput schema / properties / pageInstructions / items / description
Previous value: -"Page operation object with instruction type and target"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 / 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"
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: -[
- "assignmentID",
- "actionID",
- "eTag"
-]New value: +[
+ "assignmentID",
+ "actionID"
+]