Public/System/Department/Get-CWMDepartmentLocation.ps1
function Get-CWMDepartmentLocation { [CmdletBinding()] param( [Parameter(Mandatory = $true)] [int]$parentId, [int]$id, [switch]$count, [string]$condition, [ValidatePattern('\S* (desc|asc)')] [string]$orderBy, [string]$childConditions, [string]$customFieldConditions, [int]$page, [int]$pageSize, [string[]]$fields, [switch]$all ) $Endpoint = "/system/departments/$($parentId)/locations" Invoke-CWMGetMaster -Arguments $PsBoundParameters -Endpoint $Endpoint } |