action i_cue_get_administration_entity { label: "Get all organizations" description: "This is an iCUE only endpoint or Enterprise feature." provider: i_cue method: GET path: "/administration/entity" encoding: json input: { type: "object" properties: { Token: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { address: { type: "string" } dbConnection: { type: "string" } email: { type: "string" } id: { type: "integer" format: "int32" } isActive: { type: "boolean" } name: { type: "string" } token: { type: "string" format: "uuid" } } additionalProperties: false } } }