action izettle_count_all_products { label: "Retrieve the count of existing products" provider: izettle method: GET path: "/organizations/{organizationUuid}/products/v2/count" encoding: json input: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } } required: ["organizationUuid"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["productCount"] properties: { productCount: { type: "integer" format: "int32" } } } } }