Public/New/New-NinjaOneLocation.ps1

function New-NinjaOneLocation {
    <#
        .SYNOPSIS
            Creates a new location using the NinjaOne API.
        .DESCRIPTION
            Create an location using the NinjaOne v2 API.
        .FUNCTIONALITY
            Location
        .OUTPUTS
            A powershell object containing the response.
        .LINK
            https://docs.homotechsual.dev/modules/ninjaone/commandlets/New/location
    #>

    [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Medium')]
    [OutputType([Object])]
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'Uses dynamic parameter parsing.')]
    Param(
        # The organization Id to use when creating the location.
        [Parameter(Mandatory, Position = 0, ValueFromPipeline, ValueFromPipelineByPropertyName)]
        [Alias('id', 'organizationId')]
        [Int]$organisationId,
        # An object containing the location to create.
        [Parameter(Mandatory, Position = 1)]
        [Object]$location,
        # Show the location that was created.
        [Switch]$show
    )
    try {
        $Resource = ('v2/organization/{0}/locations' -f $organisationId)
        $RequestParams = @{
            Resource = $Resource
            Body = $location
        }
        $OrganisationExists = (Get-NinjaOneOrganisations -organisationId $organisationId).Count -gt 0
        if ($OrganisationExists) {
            if ($PSCmdlet.ShouldProcess(('Location {0}' -f $location.name), 'Create')) {
                $LocationCreate = New-NinjaOnePOSTRequest @RequestParams
                if ($show) {
                    return $LocationCreate
                } else {
                    $OIP = $InformationPreference
                    $InformationPreference = 'Continue'
                    Write-Information ('Location {0} created.' -f $LocationCreate.name)
                    $InformationPreference = $OIP
                }
            }
        } else {
            throw ('Organisation with id {0} not found.' -f $organisationId)
        }
    } catch {
        New-NinjaOneError -ErrorRecord $_
    }
}