action mist_get_ap_channels { label: "getApChannels" description: "Get List of Available channels per country code" provider: mist method: GET path: "/api/v1/const/ap_channels" encoding: json output: { type: "object" required: ["band24_channels", "band24_enabled", "band5_channels", "band5_enabled", "code", "dfs_ok", "key", "name"] properties: { band24_channels: { type: "object" description: "The property key is the channel width" required: ["20", "40"] } band24_enabled: { type: "boolean" } band5_channels: { type: "object" description: "The property key is the channel width" } band5_enabled: { type: "boolean" } code: { type: "integer" } dfs_ok: { type: "boolean" } key: { type: "string" } name: { type: "string" } } } }