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