lookup-payee-locations
Retrieve geographic locations linked to a payee in your YNAB budget. Use this tool to identify payee-specific locations by budget, payee, or location ID for precise financial tracking.
Instructions
Look up geographic locations associated with a payee.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | No | The ID of the budget. If not provided, the default budget will be used. | |
location_id | No | The ID of a specific payee location to retrieve. | |
payee_id | No | The ID of a payee to list locations for. |
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"
},
"location_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The ID of a specific payee location to retrieve.",
"title": "Location Id"
},
"payee_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The ID of a payee to list locations for.",
"title": "Payee Id"
}
},
"title": "LookupPayeeLocationsInput",
"type": "object"
}