Public/Set/Set-HaloRecurringTemplate.ps1
Function Set-HaloRecurringTemplate { <# .SYNOPSIS Updates a recurring invoice schedule template via the Halo API. .DESCRIPTION Function to send a recurring invoice schedule template update request to the Halo API .OUTPUTS Outputs an object containing the response from the web request. #> [CmdletBinding( SupportsShouldProcess = $True )] [OutputType([Object])] Param ( # Object containing properties and values used to update an existing invoice. [Parameter( Mandatory = $True, ValueFromPipeline )] [Object]$Template ) Invoke-HaloPreFlightCheck try { if ($null -eq $Template.id) { throw 'Template ID is required.' } if ($PSCmdlet.ShouldProcess("Template '$($ObjectToUpdate.id)'", 'Update')) { New-HaloPOSTRequest -Object $Template -Endpoint 'template' } } catch { New-HaloError -ErrorRecord $_ } } |