add_note_to_case
Attach a note to a specific case by entering its ID and note content to enhance documentation and collaboration within Binalyze AIR's digital forensics workflows.
Instructions
Add a note to a specific case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case to add a note to (e.g., "C-2022-0002") | |
note | Yes | The content of the note to add to the case |
Input Schema (JSON Schema)
{
"properties": {
"caseId": {
"description": "The ID of the case to add a note to (e.g., \"C-2022-0002\")",
"type": "string"
},
"note": {
"description": "The content of the note to add to the case",
"type": "string"
}
},
"required": [
"caseId",
"note"
],
"type": "object"
}