Public/New/New-HaloReport.ps1
Function New-HaloReport { <# .SYNOPSIS Creates a report via the Halo API. .DESCRIPTION Function to send a report creation request to the Halo API .OUTPUTS Outputs an object containing the response from the web request. #> [CmdletBinding()] Param ( [Parameter( Mandatory = $True )] [PSCustomObject]$Report ) Invoke-HaloUpdate -Object $Report -Endpoint "Report" } |