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