delete_note_from_case
Remove a specific note from a case by providing the case ID and note ID using the Binalyze AIR MCP Server's functionality to manage case details.
Instructions
Delete a note from a case by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseId | Yes | The ID of the case containing the note (e.g., "C-2022-0002") | |
noteId | Yes | The ID of the note to delete (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"
},
"noteId": {
"description": "The ID of the note to delete (e.g., \"8d9baa16-9aa3-4e4f-a08e-a74341ce2f90\")",
"type": "string"
}
},
"required": [
"caseId",
"noteId"
],
"type": "object"
}