action i_cue_get_administration_model { label: "Get all common Models" description: "Returns models that are common for all Organizations" provider: i_cue method: GET path: "/administration/model" encoding: json input: { type: "object" properties: { Token: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { key: { type: "string" } name: { type: "string" } queue: { type: "string" } replyQueue: { type: "string" } } additionalProperties: false } } }