Public/Schedule/HolidayLists/Get-CWMScheduleHoliday.ps1
function Get-CWMScheduleHoliday { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [Alias('holidayListId')] [int]$parentId, [int]$id, [string]$Condition, [ValidatePattern('\S* (desc|asc)')] [string]$orderBy, [string]$childConditions, [string]$customFieldConditions, [int]$page, [int]$pageSize, [string[]]$fields, [switch]$all ) $Endpoint = "/schedule/holidaylists/$(parentId)/holidays" if($id){ $Endpoint = Join-Url $Endpoint $id } return Invoke-CWMGetMaster -Arguments $PsBoundParameters -Endpoint $Endpoint } |