update_note
Modify Anki note content and tags by specifying the note ID, updated fields, and desired tags to enhance or correct your flashcards.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Object with field names as keys and new field content as values | |
noteId | Yes | ID of the note to update | |
tags | No | Array of tags to set for the note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"additionalProperties": {
"type": "string"
},
"description": "Object with field names as keys and new field content as values",
"type": "object"
},
"noteId": {
"description": "ID of the note to update",
"type": "number"
},
"tags": {
"description": "Array of tags to set for the note",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"noteId"
],
"type": "object"
}