get_all_categories
Retrieve a comprehensive list of all financial categories from your LunchMoney account, available in flattened alphabetical order or nested hierarchical format for better organization.
Instructions
Get a flattened list of all categories in alphabetical order associated with the user's account.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"format": {
"description": "Can either flattened or nested. If flattened, returns a singular array of categories, ordered alphabetically. If nested, returns top-level categories (either category groups or categories not part of a category group) in an array. Subcategories are nested within the category group under the property children.",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}