update_note_in_case
Modify existing notes in a specific case by updating their content using case and note IDs. Streamlines case management within the Binalyze AIR MCP Server.
Instructions
Update an existing note in a specific case
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case containing the note (e.g., "C-2022-0002") | |
note | Yes | The new content for the note | |
noteId | Yes | The ID of the note to update (e.g., "8d9baa16-9aa3-4e4f-a08e-a74341ce2f90") |
Input Schema (JSON Schema)
{
"properties": {
"caseId": {
"description": "The ID of the case containing the note (e.g., \"C-2022-0002\")",
"type": "string"
},
"note": {
"description": "The new content for the note",
"type": "string"
},
"noteId": {
"description": "The ID of the note to update (e.g., \"8d9baa16-9aa3-4e4f-a08e-a74341ce2f90\")",
"type": "string"
}
},
"required": [
"caseId",
"noteId",
"note"
],
"type": "object"
}