action izettle_create_categories { label: "Create a new category" provider: izettle method: POST path: "/organizations/{organizationUuid}/categories/v2" encoding: json input: { type: "object" properties: { categories: { type: "array" items: { type: "object" required: ["name", "uuid"] properties: { name: { type: "string" } uuid: { type: "string" format: "uuid" } } } } organizationUuid: { type: "string" format: "uuid" } } required: ["categories", "organizationUuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }