add_to_category_group
Organize financial categories by adding existing categories or creating new ones within a specified category group to improve budget management.
Instructions
Add categories (either existing or new) to a single category group.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"category_ids": {
"description": "Array of category_id to include in the category group.",
"items": {
"type": "number"
},
"type": "array"
},
"group_id": {
"description": "Id of the parent group to add to.",
"type": "number"
},
"new_categories": {
"description": "Array of strings representing new categories to create and subsequently include in the category group.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"group_id"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}