get-legal-hold
Retrieve detailed legal hold information for a specific case and organization using orgId, caseId, and legalHoldId. Designed for Miro MCP server Enterprise use.
Instructions
Retrieves information about a specific legal hold (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case for which you want to retrieve the legal hold information | |
legalHoldId | Yes | The ID of the legal hold you want to retrieve | |
orgId | Yes | The ID of the organization for which you want to retrieve the legal hold information |
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 legal hold information",
"type": "string"
},
"legalHoldId": {
"description": "The ID of the legal hold you want to retrieve",
"type": "string"
},
"orgId": {
"description": "The ID of the organization for which you want to retrieve the legal hold information",
"type": "string"
}
},
"required": [
"orgId",
"caseId",
"legalHoldId"
],
"type": "object"
}