export_case_endpoints
Export endpoints associated with a specific case by its ID using the MCP server, enabling efficient organization and analysis of digital forensic data.
Instructions
Export endpoints for a specific case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case to export endpoints for | |
organizationIds | No | Organization IDs to filter by. Defaults to "0". |
Input Schema (JSON Schema)
{
"properties": {
"caseId": {
"description": "The ID of the case to export endpoints for",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to filter by. Defaults to \"0\".",
"type": "string"
}
},
"required": [
"caseId"
],
"type": "object"
}