get_related_cases
Retrieve a list of related cases for a specific case using its unique case ID, enabling efficient case management and tracking within the Pega DX MCP Server.
Instructions
Get list of related cases for a specific case based on case ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseID | Yes | Full case handle to retrieve related cases for. Example: "ON6E5R-DIYRecipe-Work-RecipeCollection R-1008". Must be a complete case identifier including spaces and special characters. |
Input Schema (JSON Schema)
{
"properties": {
"caseID": {
"description": "Full case handle to retrieve related cases for. Example: \"ON6E5R-DIYRecipe-Work-RecipeCollection R-1008\". Must be a complete case identifier including spaces and special characters.",
"type": "string"
}
},
"required": [
"caseID"
],
"type": "object"
}