functions/account-controller/Get-RmmResolvedAlerts.ps1
function Get-RmmResolvedAlerts { <# .SYNOPSIS Gets all resolved alerts .DESCRIPTION Fetches resolved alerts of the authenticated user's account .OUTPUTS [System.Object] custom object containing request response data .EXAMPLE $resolvedAlerts = Get-RmmResolvedAlerts #> return New-RmmApiRequest -method GET -endpoint 'account/alerts/resolved' } |