delete_category
Remove a category or category group from your LunchMoney account when it has no dependencies like budgets, transactions, or recurring items. If dependencies exist, the tool identifies them.
Instructions
Delete a single category or category group. This will only work if there are no dependencies, such as existing budgets for the category, categorized transactions, categorized recurring items, etc. If there are dependents, this endpoint will return what the dependents are and how many there are.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"category_id": {
"description": "Id of the category or the category group to delete.",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}