delete_note
Remove a specific note from Google Keep by providing its unique ID. The tool marks the note for deletion, ensuring efficient note management and cleanup.
Instructions
Delete a note (mark for deletion).
Args:
note_id (str): The ID of the note to delete
Returns:
str: Success message
Raises:
ValueError: If the note doesn't exist or cannot be modified
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"note_id": {
"title": "Note Id",
"type": "string"
}
},
"required": [
"note_id"
],
"title": "delete_noteArguments",
"type": "object"
}