action izettle_get_product_count_for_all_taxes { label: "Get all tax rates and a count of products associated with each" provider: izettle method: GET path: "/v1/taxes/count" encoding: json output: { type: "object" properties: { counts: { type: "array" items: { type: "object" properties: { count: { type: "integer" format: "int32" } taxRateUuid: { type: "string" format: "uuid" } } } } } } }