Public/Service/TicketNotes/Get-CWMTicketNote.ps1
function Get-CWMTicketNote { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [int]$TicketID, [string]$Condition, [ValidatePattern('\S* (desc|asc)')] [string]$orderBy, [string]$childConditions, [string]$customFieldConditions, [int]$page, [int]$pageSize, [switch]$all ) $URI = "https://$($script:CWMServerConnection.Server)/v4_6_release/apis/3.0/service/tickets/$($TicketID)/notes" return Invoke-CWMGetMaster -Arguments $PsBoundParameters -URI $URI } |