action mist_get_ap_led_definition { label: "getApLedDefinition" description: "Get AP LED definition" provider: mist method: GET path: "/api/v1/const/ap_led_status" encoding: json output: { type: "array" items: { type: "object" required: ["code", "key", "name", "description"] properties: { code: { type: "string" } description: { type: "string" } key: { type: "string" } name: { type: "string" } } } } }