action izettle_create_product_slug { label: "Create a product identifier" description: "Creates a unique slug (identifier) for a product. The slug is used to create a product URL" provider: izettle method: POST path: "/organizations/{organizationUuid}/products/online/slug" encoding: json input: { type: "object" properties: { organizationUuid: { type: "string" format: "uuid" } productName: { type: "string" } } required: ["organizationUuid", "productName"] additionalProperties: false } output: { type: "object" properties: { productName: { type: "string" } slug: { type: "string" } } } }