action meraki_get_network_device_wireless_status { label: "Return the SSID statuses of an access point" description: "Return the SSID statuses of an access point" provider: meraki method: GET path: "/networks/{networkId}/devices/{serial}/wireless/status" encoding: json input: { type: "object" properties: { networkId: { type: "string" } serial: { type: "string" } } required: ["networkId", "serial"] additionalProperties: false } output: { type: "object" } }