deck_createDeck
Create a new empty Anki deck without overwriting existing decks. Specify the deck name to generate and retrieve the unique ID of the created deck.
Instructions
Creates a new empty deck. Will not overwrite an existing deck with the same name. Returns the ID of the created deck.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deck | Yes | The name of the deck to create (e.g., 'Japanese::Tokyo'). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"deck": {
"description": "The name of the deck to create (e.g., 'Japanese::Tokyo').",
"title": "Deck",
"type": "string"
}
},
"required": [
"deck"
],
"type": "object"
}