action rumble_get_wireless_lan { label: "Get wireless LAN details" provider: rumble method: GET path: "/org/wireless/{wireless_id}" encoding: json input: { type: "object" properties: { wireless_id: { type: "string" format: "uuid" } } required: ["wireless_id"] additionalProperties: false } output: { 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" } } } }