get_transactions_by_category
Retrieve all non-pending transactions for a specific category, with optional date and type filters.
Instructions
Get all transactions for a specific category, excluding pending transactions.
Returns hybrid transactions which may represent regular transactions or subtransactions of split transactions. Each result includes a 'type' field ('transaction' or 'subtransaction') and 'parent_transaction_id' (set on subtransactions only).
Args: category_id: The category ID plan_id: The plan ID (use list_plans to find available IDs) since_date: Only return transactions on or after this date (YYYY-MM-DD) type: Filter by 'uncategorized' or 'unapproved' exclude_fields: Optional list of field names to exclude from each transaction. If omitted, the model's default exclude list is used (see FIELDS.md). Pass [] to return all fields. Pass a custom list to override the default.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | ||
| plan_id | Yes | ||
| since_date | No | ||
| category_id | Yes | ||
| exclude_fields | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |