Public/Finance/AgreementAdditions/Get-CWMAgreementAddition.ps1
function Get-CWMAgreementAddition { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [Alias('AgreementID')] $parentId, [int]$id, [string]$Condition, [ValidatePattern('\S* (desc|asc)')] [string]$orderBy, [string]$childConditions, [string]$customFieldConditions, [int]$page, [int]$pageSize, [string[]]$fields, [switch]$all ) $Endpoint = "/finance/agreements/$($parentId)/additions" if($id){ $Endpoint = Join-Url $Endpoint $id } Invoke-CWMGetMaster -Arguments $PsBoundParameters -Endpoint $Endpoint } |