Public/Get-MerakiDeviceApplianceRadioSettings.ps1
|
function Get-MerakiDeviceApplianceRadioSettings { <# .SYNOPSIS Gets the radio settings configured on a specific Cisco Meraki appliance by serial number. .DESCRIPTION This function makes a REST API call to the Meraki dashboard API to retrieve information about the radio settings configured on a specific Cisco Meraki appliance, based on its serial number. The function returns detailed information about each radio setting, including its channel, power, and other relevant parameters. .PARAMETER AuthToken The authentication token to use for the API call. This should be a valid API key for the Meraki dashboard. .PARAMETER deviceSerial The serial number of the Cisco Meraki appliance to retrieve radio settings information for. .EXAMPLE PS C:\> Get-MerakiDeviceApplianceRadioSettings -AuthToken "myapikey" -deviceSerial "Q2XX-XXXX-XXXX" Returns information about the radio settings configured on the Cisco Meraki appliance with the specified serial number. #> [CmdletBinding()] param ( [parameter(Mandatory=$true)] [string]$AuthToken, [parameter(Mandatory=$true)] [string]$DeviceSerial ) try { $header = @{ "X-Cisco-Meraki-API-Key" = $AuthToken } $response = Invoke-RestMethod -Method Get -Uri "https://api.meraki.com/api/v1/devices/$DeviceSerial/appliance/radio/settings" -headers $header -UserAgent "MerakiPowerShellModule/1.1.3 DocNougat" return $response } catch { Write-Debug $_ Throw $_ } } |