get-all-legal-holds
Retrieve a comprehensive list of all legal holds for a specific case and organization within Miro MCP. Supports pagination and limit settings for efficient data handling in enterprise environments.
Instructions
Retrieves the list of all legal holds within a case (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case for which you want to retrieve the list of legal holds | |
cursor | No | Cursor for pagination | |
limit | Yes | The maximum number of items in the result list | |
orgId | Yes | The ID of the organization for which you want to retrieve the list of legal holds |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"caseId": {
"description": "The ID of the case for which you want to retrieve the list of legal holds",
"type": "string"
},
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"limit": {
"description": "The maximum number of items in the result list",
"type": "number"
},
"orgId": {
"description": "The ID of the organization for which you want to retrieve the list of legal holds",
"type": "string"
}
},
"required": [
"limit",
"orgId",
"caseId"
],
"type": "object"
}