delete_scheduled_transaction
Remove scheduled transactions from your YNAB budget to cancel recurring payments or prevent future automated transactions from occurring.
Instructions
Delete a scheduled transaction.
Args:
budget_id: The ID of the budget (use 'last-used' for default budget)
scheduled_transaction_id: The ID of the scheduled transaction to delete
Returns:
JSON string with confirmation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | Yes | ||
scheduled_transaction_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"title": "Budget Id",
"type": "string"
},
"scheduled_transaction_id": {
"title": "Scheduled Transaction Id",
"type": "string"
}
},
"required": [
"budget_id",
"scheduled_transaction_id"
],
"type": "object"
}