action izettle_get_tax_rates { label: "Get all available tax rates" provider: izettle method: GET path: "/v1/taxes" encoding: json output: { type: "array" items: { 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" } } } } } } } }