Public/New/New-HaloOpportunityBatch.ps1
Function New-HaloOpportunityBatch { <# .SYNOPSIS Creates multiple opportunities via the Halo API. .DESCRIPTION Function to send a batch of opportunity creation requests to the Halo API .OUTPUTS Outputs an object containing the responses from the web requests. #> [CmdletBinding( SupportsShouldProcess = $True )] [OutputType([Object[]])] Param ( # Array of objects containing properties and values used to create one or more new opportunities. [Parameter( Mandatory = $True )] [Array[]]$Opportunitys, # How many objects to process at once before delaying. Default value is 100. [Int32]$BatchSize, # How long to wait between batch runs. Default value is 1 second. [Int32]$BatchWait ) Invoke-HaloPreFlightCheck try { if ($PSCmdlet.ShouldProcess('Opportunitys', 'Create')) { if ($Opportunitys -is [Array]) { $BatchParams = @{ Input = $Opportunitys EntityType = 'Opportunity' Operation = 'New' } if ($BatchSize) { $BatchParams.Size = $BatchSize } if ($BatchWait) { $BatchParams.Wait = $BatchWait } $BatchResults = Invoke-HaloBatchProcessor @BatchParams Return $BatchResults } else { throw 'New-HaloOpportunityBatch requires an array of opportunities to create.' } } } catch { New-HaloError -ErrorRecord $_ } } |