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