functions/Get-DrmmAccountAlertsOpen.ps1
function Get-DrmmAccountAlertsOpen { <# .SYNOPSIS Fetches open alerts of the authenticated user's account .DESCRIPTION Returns account open alerts. .PARAMETER muted Use this switch to show muted alerts #> # Function Parameters Param ( [Parameter(Mandatory=$False)] [Switch]$muted ) # Declare Variables $apiMethod = 'GET' $maxPage = 50 $nextPageUrl = $null $page = 0 $Results = @() do { $Response = New-ApiRequest -apiMethod $apiMethod -apiRequest "/v2/account/alerts/open?max=$maxPage&page=$page&muted=$muted" | ConvertFrom-Json if ($Response) { $nextPageUrl = $Response.pageDetails.nextPageUrl $Results += $Response.Alerts $page++ } } until ($nextPageUrl -eq $null) # Return all sites except the 'Deleted Devices' site return $Results } |