action mist_get_org_info { label: "getOrg" description: "Get Organization information" provider: mist method: GET path: "/api/v1/orgs/{org_id}" encoding: json output: { type: "object" required: ["id", "name"] properties: { alarmtemplate_id: { type: "string" format: "uuid" } allow_mist: { type: "boolean" } created_time: { type: "number" } id: { type: "string" format: "uuid" } modified_time: { type: "number" } msp_id: { type: "string" format: "uuid" } msp_logo_url: { type: "string" format: "uri" description: "logo uploaded by the MSP with advanced tier, only present if provided" } msp_name: { type: "string" description: "name of the msp the org belongs to" } name: { type: "string" } orggroup_ids: { type: "array" items: { type: "string" format: "uuid" } } session_expiry: { type: "number" } } } }