cards_to_notes
Convert Anki card IDs into corresponding note IDs to organize and manage study materials efficiently. Ideal for users needing precise note identification in their decks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to get note IDs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to get note IDs for",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cardIds"
],
"type": "object"
}