functions/sites-controller/Get-RmmSiteResolvedAlerts.ps1
function Get-RmmSiteResolvedAlerts { <# .SYNOPSIS Get resolved alerts for a given site .DESCRIPTION Fetches the resolved alerts of the site identified by the given site Uid .PARAMETER siteUid Uid of the site .OUTPUTS [System.Object] custom object containing request response data .EXAMPLE $site = Get-RmmSiteResolvedAlerts -siteUid '6bcc7737-61ed-4cd9-bf91-26be42401c62' #> param ( [parameter(Mandatory=$true)] [string]$siteUid ) return New-RmmApiRequest -method GET -endpoint "site/$siteUid/alerts/resolved" } |