Get-PSUJob Parameters is null?

Product: PowerShell Universal
Version: 3.3.6

Good morning,

I have an endpoint calling get-psujob and noticed that its not returning the job parameters. This would be good information to have.

$Parameters = @{
	Url            = "/job"
	Method         = @('GET')
	Endpoint       = {
		$null = Connect-PSUServer -ComputerName $HostName -AppToken $AppToken
		return Get-PSUJob -Id 14288 
	}
}
New-PSUEndpoint @Parameters

image

image

It looks like we aren’t doing a JOIN on that table when calling that particular API method. I’ve updated it and it will return the parameters in v3.4.0

1 Like

Thanks