action i_cue_post_lifecycle_one_to_one { label: "Map from old product to new product to create artifical history" description: "Supports the creation of artificial startup history for new products, based on a flexible mapping of old to new. This is an Enterprise feature." provider: i_cue method: POST path: "/lifecycle/one-to-one" encoding: json input: { type: "object" properties: { Token: { type: "string" } data: { type: "object" properties: { historyValues: { type: "array" items: { type: "number" format: "double" } } timeSeriesId: { type: "string" } } additionalProperties: false } planningLevelId: { type: "string" } ratio: { type: "number" format: "double" } } required: ["planningLevelId"] additionalProperties: false } output: { type: "object" properties: { historyValues: { type: "array" items: { type: "number" format: "double" } } timeSeriesId: { type: "string" } } additionalProperties: false } }