action youneedabudget_get_scheduled_transaction_by_id { label: "Single scheduled transaction" description: "Returns a single scheduled transaction" provider: youneedabudget method: GET path: "/budgets/{budget_id}/scheduled_transactions/{scheduled_transaction_id}" encoding: json input: { type: "object" properties: { budget_id: { type: "string" } scheduled_transaction_id: { type: "string" } } required: ["budget_id", "scheduled_transaction_id"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["scheduled_transaction"] properties: { scheduled_transaction: { type: "object" } } } } } }