action izettle_set_taxation_mode { label: "Update the organization tax settings" provider: izettle method: PUT path: "/v1/taxes/settings" encoding: json input: { type: "object" required: ["taxationMode"] properties: { taxationMode: { type: "string" enum: ["EXCLUSIVE", "INCLUSIVE"] } } } output: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } taxationMode: { type: "string" enum: ["EXCLUSIVE", "INCLUSIVE"] } taxationType: { type: "string" enum: ["NONE", "SALES_TAX", "VAT"] } } } }