action i_cue_get_administration_model_entity_id { label: "Get Models for Organization" description: "Returns models registered for Organization" provider: i_cue method: GET path: "/administration/model/{entityId}" encoding: json input: { type: "object" properties: { Token: { type: "string" } entityId: { type: "integer" format: "int32" } } required: ["entityId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { key: { type: "string" } name: { type: "string" } queue: { type: "string" } replyQueue: { type: "string" } } additionalProperties: false } } }