action mist_get_installer_site_groups { label: "getInstallerSiteGroups" description: "Get Site Groups" provider: mist method: GET path: "/api/v1/installer/orgs/{org_id}/sitegroups" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { id: { type: "string" format: "uuid" } name: { type: "string" } } } } }