ynab_get_payee
Retrieve details of a specific payee from your YNAB budget, including name, transfer account, and deletion status. Choose JSON or markdown output.
Instructions
Get details for a specific payee.
Args:
budget_id (string, optional): Budget UUID. Omit to use the default budget.
payee_id (string, required): Payee UUID.
response_format (string, optional): "json" or "markdown" (default: "markdown").
Returns: payee (id, name, transfer_account_id, deleted), cached, cache_info
Errors:
"No default budget set" → run ynab_set_default_budget first
"Payee not found" → invalid payee_id
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| budget_id | No | ||
| payee_id | Yes | ||
| response_format | No | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cached | No | Indicates if data was served from cache | |
| cache_info | No | Human-readable cache status message (e.g., "Cache hit", "Cache miss") | |
| usedDelta | No | Indicates if delta merge optimization was applied for budgets | |
| payee | Yes | Payee details |