create_category
Create a new transaction category in LunchMoney to organize and classify financial transactions with customizable settings for budgeting, income tracking, and totals calculation.
Instructions
Create a single category.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"archived": {
"default": false,
"description": "Whether or not category should be archived.",
"type": "boolean"
},
"description": {
"default": "",
"description": "Description of category. Must be less than 140 characters.",
"type": "string"
},
"exclude_from_budget": {
"default": false,
"description": "Whether or not transactions in this category should be excluded from budgets.",
"type": "boolean"
},
"exclude_from_totals": {
"default": false,
"description": "Whether or not transactions in this category should be excluded from calculated totals.",
"type": "boolean"
},
"group_id": {
"description": "Assigns the newly-created category to an existing category group.",
"type": "number"
},
"is_income": {
"default": false,
"description": "Whether or not transactions in this category should be treated as income.",
"type": "boolean"
},
"name": {
"description": "Name of category. Must be between 1 and 40 characters.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}