delete_transaction_categories
Type: mutation
Deletes a list of transaction categories.
Signature
async def delete_transaction_categories(
category_ids: List[str]
) -> Dict[str, Any]
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
category_ids | List[str] | Yes | - |
Example
from monarchmoney import MonarchMoney
mm = MonarchMoney()
await mm.login(email, password)
result = await mm.delete_transaction_categories("example_category_ids")
print(result)
Try It Out
To test this API method locally:
- Install the package:
pip install monarchmoney - Create a Python script with the example code above
- Replace
emailandpasswordwith your Monarch Money credentials - Run the script
See the Authentication Guide for details on logging in.