action izettle_delete_products { label: "Delete a list of products" provider: izettle method: DELETE path: "/organizations/{organizationUuid}/products" encoding: json input: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } uuid: { type: "array" items: { type: "string" format: "uuid" } } } required: ["organizationUuid", "uuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }