get_recurring_items
Retrieve recurring financial items for a specified month to help forecast expected income and expenses.
Instructions
Retrieve a list of recurring items to expect for a specified month
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"debit_as_negative": {
"description": "Pass true to return debit amounts as negative",
"type": "boolean"
},
"end_date": {
"description": "End date in YYYY-MM-DD format",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format. Defaults to first day of current month",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}