action pocketsmith_delete_transactions_id { label: "Delete transaction" description: "Deletes a transaction and all its data by ID." provider: pocketsmith method: DELETE path: "/transactions/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }