list-accounts
Retrieve all accounts linked to a specified budget, enabling users to obtain account IDs for integration with other tools or processes.
Instructions
List all accounts for a given budget. Useful for getting account IDs for other tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | No | The ID of the budget. If not provided, the default budget will be used. |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The ID of the budget. If not provided, the default budget will be used.",
"title": "Budget Id"
}
},
"title": "ListAccountsInput",
"type": "object"
}