get_case_endpoints
Retrieve all endpoints linked to a specific case by providing its ID using Binalyze AIR's MCP Server for digital forensics and incident response.
Instructions
Get all endpoints associated with a specific case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the case to retrieve endpoints for | |
organizationIds | No | Organization IDs to filter endpoints by. Defaults to 0. |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the case to retrieve endpoints for",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to filter endpoints by. Defaults to 0.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}