delete_case_follower
Remove a user as a follower from a case in Pega DX MCP Server to stop their notifications and updates. Specify the case ID and follower user ID to disassociate the user.
Instructions
Remove a follower from a case, ending their subscription to case notifications and updates. Removes the follower association between case and user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseID | Yes | Full case handle (case ID) to remove follower from. Example: "OSIEO3-DOCSAPP-WORK T-561003". Must be a complete case identifier including spaces and special characters. | |
followerID | Yes | User ID of the follower to remove from the case. This is the unique identifier for the user in the Pega system who will no longer follow the case. |
Input Schema (JSON Schema)
{
"properties": {
"caseID": {
"description": "Full case handle (case ID) to remove follower from. Example: \"OSIEO3-DOCSAPP-WORK T-561003\". Must be a complete case identifier including spaces and special characters.",
"type": "string"
},
"followerID": {
"description": "User ID of the follower to remove from the case. This is the unique identifier for the user in the Pega system who will no longer follow the case.",
"type": "string"
}
},
"required": [
"caseID",
"followerID"
],
"type": "object"
}