action mist_get_installer_sites { label: "getInstallerSites" description: "Get Sites" provider: mist method: GET path: "/api/v1/installer/orgs/{org_id}/sites" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name", "timezone", "country_code", "latlng", "address"] properties: { address: { type: "string" } country_code: { type: "string" } id: { type: "string" format: "uuid" } latlng: { type: "object" required: ["lat", "lng"] properties: { lat: { type: "number" } lng: { type: "number" } } } name: { type: "string" } timezone: { type: "string" } } } } }