action izettle_get_tax_rate { label: "Get a single tax rate" provider: izettle method: GET path: "/v1/taxes/{taxRateUuid}" encoding: json input: { type: "object" properties: { taxRateUuid: { type: "string" format: "uuid" } } required: ["taxRateUuid"] additionalProperties: false } output: { type: "object" required: ["label", "uuid"] properties: { default: { type: "boolean" } label: { type: "string" } percentage: { type: "number" } uuid: { type: "string" format: "uuid" } } } }