action izettle_get_all_options { label: "Retrieve an aggregate of active Options in the library" provider: izettle method: GET path: "/organizations/{organizationUuid}/products/options" encoding: json input: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } } required: ["organizationUuid"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { options: { type: "array" items: { type: "object" properties: { name: { type: "string" } values: { type: "array" items: { type: "string" } } } } } } } } }