Public/Get-MerakiOrganizationInsightMonitoredMediaServers.ps1

function Get-MerakiOrganizationInsightMonitoredMediaServers {
    <#
    .SYNOPSIS
    Retrieves a list of monitored media servers for a specified Meraki organization.
 
    .DESCRIPTION
    This function retrieves a list of monitored media servers for a specified Meraki organization using the Meraki Dashboard API. The authentication token and organization ID are required for this operation.
 
    .PARAMETER AuthToken
    Specifies the authentication token for the Meraki Dashboard API.
 
    .PARAMETER OrgId
    Specifies the ID of the Meraki organization. If not specified, the function will use the ID of the first organization returned by Get-MerakiOrganizations.
 
    .EXAMPLE
    PS C:\> Get-MerakiOrganizationInsightMonitoredMediaServers -AuthToken "12345" -OrgId "123456"
 
    Retrieves a list of monitored media servers for the organization with ID "123456" using the authentication token "12345".
 
    #>

    [CmdletBinding()]
    param (
        [parameter(Mandatory=$true)]
        [string]$AuthToken,
        [parameter(Mandatory=$false)]
        [string]$OrganizationID = (Get-OrgID -AuthToken $AuthToken)
    )
    If($OrganizationID -eq "Multiple organizations found. Please specify an organization ID.") {
        Return "Multiple organizations found. Please specify an organization ID."
    } else {
        try {
            $header = @{
                "X-Cisco-Meraki-API-Key" = $AuthToken
            }
            $response = Invoke-RestMethod -Method Get -Uri "https://api.meraki.com/api/v1/organizations/$OrganizationID/insight/monitoredMediaServers" -headers $header -UserAgent "MerakiPowerShellModule/1.0.8 DocNougat"
            return $response
        }
        catch {
        Write-Debug $_
        Throw $_
    }
    }
}