action izettle_delete_discount { label: "Delete a single discount " provider: izettle method: DELETE path: "/organizations/{organizationUuid}/discounts/{discountUuid}" encoding: json input: { type: "object" properties: { discountUuid: { type: "string" format: "uuid" } organizationUuid: { type: "string" format: "uuid" } } required: ["discountUuid", "organizationUuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }