action izettle_get_product_types { label: "Retrieve all categories" provider: izettle method: GET path: "/organizations/{organizationUuid}/categories/v2" encoding: json input: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } } required: ["organizationUuid"] additionalProperties: false } output: { type: "object" required: ["categories"] properties: { categories: { type: "array" items: { type: "object" required: ["name", "uuid"] properties: { name: { type: "string" } uuid: { type: "string" format: "uuid" } } } } } } }