action i_cue_post_administration_model_entity_id { label: "Register new forecasting model" description: "Register new forecasting model for single organziation" provider: i_cue method: POST path: "/administration/model/{entityId}" encoding: json input: { type: "object" properties: { Token: { type: "string" } entityId: { type: "integer" format: "int32" } key: { type: "string" } name: { type: "string" } } required: ["entityId"] additionalProperties: false } output: { type: "object" properties: { key: { type: "string" } name: { type: "string" } queue: { type: "string" } replyQueue: { type: "string" } } additionalProperties: false } }