get_case_action
Retrieve detailed metadata and available actions for a specific case or stage action in Pega DX MCP Server, using case ID and action ID to streamline workflow interactions.
Instructions
Get detailed information about a case action, including view metadata and available actions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actionID | Yes | Flow action name of a case/stage action that the client requests | |
caseID | Yes | Full case handle (e.g.,ON6E5R-DIYRECIPE-WORK-RECIPECOLLECTION R-1008) | |
excludeAdditionalActions | No | When true, excludes information on all actions performable on the case. Set to true if action information was already retrieved in a previous call | |
viewType | No | Type of view data to return. "form" returns only form UI metadata, "page" returns full case page UI metadata | page |
Input Schema (JSON Schema)
{
"properties": {
"actionID": {
"description": "Flow action name of a case/stage action that the client requests",
"type": "string"
},
"caseID": {
"description": "Full case handle (e.g.,ON6E5R-DIYRECIPE-WORK-RECIPECOLLECTION R-1008)",
"type": "string"
},
"excludeAdditionalActions": {
"default": false,
"description": "When true, excludes information on all actions performable on the case. Set to true if action information was already retrieved in a previous call",
"type": "boolean"
},
"viewType": {
"default": "page",
"description": "Type of view data to return. \"form\" returns only form UI metadata, \"page\" returns full case page UI metadata",
"enum": [
"form",
"page"
],
"type": "string"
}
},
"required": [
"caseID",
"actionID"
],
"type": "object"
}