get_comparison_report
Generate a comparison report for a specific endpoint and task using endpoint ID and task ID. This tool aids in analyzing digital forensic data and incident response investigations.
Instructions
Get comparison result report for a specific endpoint and task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpointId | Yes | The endpoint ID associated with the comparison task | |
taskId | Yes | The ID of the comparison task to get the report for |
Input Schema (JSON Schema)
{
"properties": {
"endpointId": {
"description": "The endpoint ID associated with the comparison task",
"type": "string"
},
"taskId": {
"description": "The ID of the comparison task to get the report for",
"type": "string"
}
},
"required": [
"endpointId",
"taskId"
],
"type": "object"
}