get_categories
Retrieve expense and income categories for a specific wallet to organize and classify financial transactions within the Money Lover personal finance app.
Instructions
Retrieve categories for a specific wallet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | JWT token returned by the login tool or derived from EMAIL/PASSWORD environment variables | |
| walletId | Yes | Wallet identifier |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"description": "JWT token returned by the login tool or derived from EMAIL/PASSWORD environment variables",
"minLength": 1,
"type": "string"
},
"walletId": {
"description": "Wallet identifier",
"minLength": 1,
"type": "string"
}
},
"required": [
"walletId"
],
"type": "object"
}