deck_saveDeckConfig
Save a deck configuration in Anki for organized flashcard management, using the provided configuration object with a required 'id' field to ensure proper updates.
Instructions
Saves the given configuration group. Returns true on success, false otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | The deck configuration object to save. Must include an 'id'. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"config": {
"additionalProperties": true,
"description": "The deck configuration object to save. Must include an 'id'.",
"title": "Config",
"type": "object"
}
},
"required": [
"config"
],
"type": "object"
}