list-payees
Retrieve all payees for a specified YNAB budget to locate payee IDs or identify duplicate entries requiring consolidation.
Instructions
List all payees for a given budget. Good for finding payee IDs or identifying messy payee data that needs to be merged.
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": "ListPayeesInput",
"type": "object"
}