action rumble_get_wireless_lans { label: "Get all wireless LANs" provider: rumble method: GET path: "/org/wireless" encoding: json input: { type: "object" properties: { search: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id"] properties: { agent_name: { type: "string" } authentication: { type: "string" } bssid: { type: "string" format: "mac" } channels: { type: "string" } created_at: { type: "integer" format: "int64" } data: { type: "object" } encryption: { type: "string" } essid: { type: "string" format: "uuid" } family: { type: "string" } id: { type: "string" format: "uuid" } interface: { type: "string" } last_agent_id: { type: "string" format: "uuid" } last_seen: { type: "integer" format: "int64" } last_task_id: { type: "string" format: "uuid" } org_name: { type: "string" } organization_id: { type: "string" format: "uuid" } signal: { type: "integer" } site_id: { type: "string" format: "uuid" } site_name: { type: "string" } type: { type: "string" } vendor: { type: "string" } } } } }