release_case_lock
Release pessimistic locks on Pega cases and clear cached updates. Use to cancel case operations requiring locks, ensuring clean termination of locked workflows.
Instructions
Release pessimistic lock on a Pega case and clean up any cached or pending updates. Used when canceling case operations that require locking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseID | Yes | Full case handle (case ID) to release lock from. Example: "OSIEO3-DOCSAPP-WORK T-561003". Must be a complete case identifier including spaces and special characters. | |
viewType | No | Type of view data to return. "none" returns no view metadata or fields (default), "page" returns the full page UI metadata. | none |
Input Schema (JSON Schema)
{
"properties": {
"caseID": {
"description": "Full case handle (case ID) to release lock from. Example: \"OSIEO3-DOCSAPP-WORK T-561003\". Must be a complete case identifier including spaces and special characters.",
"type": "string"
},
"viewType": {
"default": "none",
"description": "Type of view data to return. \"none\" returns no view metadata or fields (default), \"page\" returns the full page UI metadata.",
"enum": [
"none",
"page"
],
"type": "string"
}
},
"required": [
"caseID"
],
"type": "object"
}