delete_case_tag
Remove a specific tag from a case by providing the case ID and tag ID using the Pega DX MCP Server. This tool ensures precise tag management within Pega Platform workflows.
Instructions
Delete a specific tag from a case by case ID and tag ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseID | Yes | Full case handle (case ID) to delete tag from. Example: "OSIEO3-DOCSAPP-WORK T-561003". Must be a complete case identifier including spaces and special characters. | |
tagID | Yes | Tag ID to be deleted from the case. This is the unique identifier of the specific tag to remove. |
Input Schema (JSON Schema)
{
"properties": {
"caseID": {
"description": "Full case handle (case ID) to delete tag from. Example: \"OSIEO3-DOCSAPP-WORK T-561003\". Must be a complete case identifier including spaces and special characters.",
"type": "string"
},
"tagID": {
"description": "Tag ID to be deleted from the case. This is the unique identifier of the specific tag to remove.",
"type": "string"
}
},
"required": [
"caseID",
"tagID"
],
"type": "object"
}