function New-MatrixUrl {
param(
[Parameter(Mandatory)]
[string]$ServerUrl,
[string]$ApiPath
)
return $ServerUrl.Trim("/") + "/" + $ApiPath
}