Public/Get-MerakiNetworkFloorPlans.ps1
function Get-MerakiNetworkFloorPlans { <# .SYNOPSIS Retrieves a list of floor plans for a Meraki network. .PARAMETER AuthToken The Meraki API key. .PARAMETER NetworkID The ID of the Meraki network. .EXAMPLE Get-MerakiNetworkFloorPlans -AuthToken "YOUR_API_KEY" -NetworkID "YOUR_NETWORK_ID" Retrieves a list of floor plans for the specified network. .NOTES Requires the Invoke-RestMethod cmdlet. #> [CmdletBinding()] param ( [Parameter(Mandatory=$true)] [string]$AuthToken, [Parameter(Mandatory=$true)] [string]$NetworkID ) try { $header = @{ 'X-Cisco-Meraki-API-Key' = $AuthToken } $response = Invoke-RestMethod -Method Get -Uri "https://api.meraki.com/api/v1/networks/$NetworkID/floorPlans" -headers $header -UserAgent "MerakiPowerShellModule/1.0.8 DocNougat" return $response } catch { Write-Debug $_ Throw $_ } } |