Public/Service/BoardSubtypes/Get-CWMBoardSubtype.ps1
function Get-CWMBoardSubtype { [CmdletBinding()] param( [Parameter(Mandatory = $true)] [Alias('boardId')] [int]$parentId, [int]$id, [switch]$count, [string]$condition, [ValidatePattern('\S* (desc|asc)')] $orderBy, [string]$childconditions, [string]$customfieldconditions, [int]$page, [int]$pageSize, [string[]]$fields, [switch]$all ) $Endpoint = "/service/boards/$($parentId)/subtypes" Invoke-CWMGetMaster -Arguments $PsBoundParameters -Endpoint $Endpoint } |