whooing_update_entry
Update an existing transaction entry in Whooing. Provide entry ID, date, accounts, item, and amount to modify the record.
Instructions
Update an existing transaction entry in Whooing. Use whooing_entries to find the entry_id, and whooing_accounts to look up account IDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entry_id | Yes | Entry ID to update (from whooing_entries) | |
| entry_date | Yes | Transaction date in YYYYMMDD format (e.g. 20260423) | |
| l_account_id | Yes | Left account ID (e.g. expense category) | |
| r_account_id | Yes | Right account ID (e.g. payment method) | |
| item | Yes | Item description (store name or item) | |
| money | Yes | Amount in KRW (negative for balance adjustments, 0 allowed) | |
| memo | No | Optional memo | |
| section_id | No | Section ID. Defaults to WHOOING_SECTION_ID env var. |