action izettle_create_tax_rates { label: "Create new tax rates" provider: izettle method: POST path: "/v1/taxes" encoding: json input: { type: "object" required: ["taxRates"] properties: { taxRates: { type: "array" items: { type: "object" required: ["label", "uuid"] properties: { default: { type: "boolean" } label: { type: "string" } percentage: { type: "number" } uuid: { type: "string" format: "uuid" } } } } } } output: { type: "object" properties: { taxRates: { type: "array" items: { type: "object" required: ["label", "uuid"] properties: { default: { type: "boolean" } label: { type: "string" } percentage: { type: "number" } uuid: { type: "string" format: "uuid" } } } } } } }