get_participant_roles
Retrieve available participant roles for a specific Pega case to manage access control and permissions by providing the full case ID.
Instructions
Retrieve list of participant roles for a specific Pega case. Returns available roles that can be assigned to case participants for access control and permission management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseID | Yes | Full case handle (case ID) to retrieve participant roles 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 (case ID) to retrieve participant roles 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"
}